Hi all,
I want to use bold italic letters with the sans serif font like in:
{\bfseries\itshape\sffamily bold italic sans-serif type}
but this only produces:
bold italic sans-serif type
and not:
bold italic sans-serif type
If I try to use the same with roman letter then it works fine. Any suggestions?
Text Formatting ⇒ Sans Serif font problem
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Sans Serif font problem
Not every font provides this combination of properties. Latin modern does - try this:
Stefan
Code: Select all
\documentclass{article}
\usepackage{lmodern}
\begin{document}
{\bfseries\itshape\sffamily bold italic sans-serif type}
\end{document}
LaTeX.org admin
Re: Sans Serif font problem
It works
Thanks a lot!!!
Thanks a lot!!!