jiwopene
jiwopene

Reputation: 3627

man – How can I make part of the word italic?

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

Upvotes: 1

Views: 203

Answers (1)

jiwopene
jiwopene

Reputation: 3627

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

normal\fIitalic\fP

Bold is \fB.

Upvotes: 2

Related Questions