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

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

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