Discussion:
How to use \textsc{} in section headings?
(too old to reply)
Rehceb Rotkiv
2007-05-27 09:19:28 UTC
Permalink
Hello,

how can I use smallcaps in LaTeX section headings? \textsc{string} does
not work. I do not want all headings in smallcaps, though, only single
words. Does anyone know how to accomplish this?

Thanks,
Rehceb
Ulrike Fischer
2007-05-27 09:33:52 UTC
Permalink
Post by Rehceb Rotkiv
Hello,
how can I use smallcaps in LaTeX section headings? \textsc{string} does
not work. I do not want all headings in smallcaps, though, only single
words. Does anyone know how to accomplish this?
You must use a font that has bold small caps.

http://www.tex.ac.uk/cgi-bin/texfaq2html?label=bold-extras

If you are using the cm-fonts, try \usepackage[T1]{fontenc}

\documentclass{article}
\usepackage[T1]{fontenc}

\begin{document}
\section{\textsc{Hallo} section}
\end{document}
--
Ulrike Fischer
e***@markelikalderon.com
2007-05-27 09:43:21 UTC
Permalink
Post by Rehceb Rotkiv
Hello,
how can I use smallcaps in LaTeX section headings? \textsc{string} does
not work. I do not want all headings in smallcaps, though, only single
words. Does anyone know how to accomplish this?
Thanks,
Rehceb
Look at the titlesec package
Rehceb Rotkiv
2007-05-27 11:46:26 UTC
Permalink
Ah, I see, it's about the fonts. Thanks for your help!

Rehceb

Loading...