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
You can wrap the text between \fI
and \fP
:
normal\fIitalic\fP
Bold is \fB
.