GeneralAn italic \Phi

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
N00bDaan
Posts: 14
Joined: Tue Feb 27, 2007 4:44 pm

An italic \Phi

Post by N00bDaan »

Aloha,

So I want to get my \Phi italic and I tried several things, but none of them really worked (see the code). The subscript Ar part will go italic, but the Phi does not want to... :)

Code: Select all

$\Phi_{Ar}$
Anyone knows how to handle this? I tried \mathit, \textsl, {\it ...}
I dunno anyway. :)

Recommended reading 2024:

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

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

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

An italic \Phi

Post by localghost »

When using a postscript font, there is an option you can give to the related package. Some of the font packages from the psnfss bundle offer such an option.

Code: Select all

\usepackage[slantedGreek]{mathptmx}   % Typesetting in Times style
\usepackage[slantedGreek]{mathpazo}   % Typesetting in Palatino style
You can alternatively use the mathdesign package, which offers a more general use of and with different styles. It also has options to get slanted Greek letters. Refer to its documentation to get things work.
Post Reply