Document Classes[SOLVED] Mathpazo --- no small caps

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
Berticus
Posts: 8
Joined: Wed Dec 31, 2008 11:37 pm

[SOLVED] Mathpazo --- no small caps

Post by Berticus »

I've tried a few different things:

Code: Select all

\RequirePackage[osf]{mathpazo}

Code: Select all

\RequirePackage[osf,sc]{mathpazo}
They enable the text figures, but not the small caps. I've tried both of these to get small caps:

Code: Select all

\textsc{some text here}

Code: Select all

{\scshape Some text here}
Neither provided small caps. The only time it works is when I do:

Code: Select all

\RequirePackage{mathpazo}
However, that disables the text figures.
Last edited by Berticus on Sat Jan 03, 2009 9:56 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

[SOLVED] Mathpazo --- no small caps

Post by josephwright »

This works for me with

Code: Select all

\documentclass{article}
\usepackage[osf,sc]{mathpazo}
\begin{document}
Some text 123456689 \textsc{Some text}
\end{document}
What TeX system are you using?
--
Joseph Wright
Joseph Wright
Berticus
Posts: 8
Joined: Wed Dec 31, 2008 11:37 pm

[SOLVED] Mathpazo --- no small caps

Post by Berticus »

TeX Live

That works for me too, but I'd like this in the document class I'm making.

---Edit---
It's because I tried mixing small caps with a bold face.
Post Reply