Every time I want to emphasize a definition word in a paragraph I need to explicitly state the formatting with \mathbf{<word(s)>}. But I'd like to use a semantic command like \def{<word(s)>}. Is there a built-in command for this or do I have to define a macro. And if how would I do that?
Asked
Active
Viewed 123 times
0
implicit_knowledge
- 307
- 1
- 9
\newcommand{\defn}{\textbf}to your preamble and then use\defn{<word(s)>}. Definitely not\mathbfand absolutely not\def. – Werner Nov 26 '14 at 07:34\definitionor would it clash with something? – implicit_knowledge Nov 26 '14 at 07:40\definitionmight clash with a macro from another package you use in addition. I suggest\newcommand{\SemDef}{\textbf}or something similar, in order to prevent clashes – Nov 26 '14 at 08:03