[Tex/LaTex] \textit is to \emph as \textbf is to…

boldemphasisitalic

Supposedly, \emph is more "semantic" while \textit can be seen as an aspect of its implementation. LaTeX has no \strong — as opposed to, say, HTML which has both <em> and <strong>. So should I roll my own \strong or is it just overkill? Or is there some other, equivalent, command?

Best Answer

The idea behind \emph is that it provides a high level way for giving emphasis to a part of the text. High level in the sense it is “independent” of the actual implementation.

The default behavior of \emph is to use italics when in an upright context and upright when in an italics context, but this can be modified on a document’s basis (or by a package implementing a particular style). In particular, your question has no real answer: \emph and \textit bear no “abstract” relationship; the relationship is only at the default implementation level.

This is different from stating some part of text is in italics; for instance, theorems are commonly typeset in italics and the styles use \itshape for this, not \em (the declarative form of \emph). Similarly they use \bfseries for the theorem tag (or \scshape or whatever).

You're free to define as many similar commands as you want. If your style requires a sort of “strong emphasis”, you can define \strong as you please, maybe using \bfseries in normal context and \extrabfseries (if your font supports it, the name is hypothetical) in a \strong context. Before doing this, think deeply whether your readers will be able to appreciate the difference between \emph{word} and \strong{word} (which I think they won't).