General ⇒ How to make non-bold text in a bold context?
How to make non-bold text in a bold context?
\item[Here is a \unbold{non-bold} word:] And a description of it...
to look something like this:
* Here is a non-bold word: And a description of it...
Can you do that?
Thanks in advance.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: How to make non-bold text in a bold context?

Re: How to make non-bold text in a bold context?
i just "had" the same problem.

- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
How to make non-bold text in a bold context?
\textnormal does more than just switching to non-bold text. It could change other attributes like sans-serif, italic or slanted. For instance KOMA classes use a sans serif font for the description list. Have a look at the effect of \textnormal:
Code: Select all
\documentclass{scrartcl}
\begin{document}
\begin{description}
\item[Here is a \textnormal{non-bold} word:] And a description of it...
\item[Another item:] and its description
\end{description}
\end{document}
The command switching from bold to medium typeface is \textmd:
Code: Select all
\documentclass{scrartcl}
\begin{document}
\begin{description}
\item[Here is a \textmd{non-bold} word:] And a description of it...
\item[Another item:] and its description
\end{description}
\end{document}