1

How can I make part of word italic in groff manpage?

When I write this:

.TH prog 1
normal
.I italic

Output is like this:

normal italic

How can I do this without inserting the space between words normal and italic?

normalitalic

jiwopene
  • 3,077
  • 17
  • 30

1 Answers1

2

You can wrap the text between \fI and \fP:

normal\fIitalic\fP

Bold is \fB.

jiwopene
  • 3,077
  • 17
  • 30