General ⇒ Stylized Fonts
Stylized Fonts
Are there other stylized fonts available as standard packages? I am using Latex on a mac and I'm not sure what the distribution was. Thanks in advance.
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
Re: Stylized Fonts
http://www.dante.de/CTAN/fonts/tex-gyre ... c-info.pdf
The only problem, which may not be one for you, is that you cannot write maths with that font. You also have to see if it blends well with your main font.
Regards,
B.A.
Re: Stylized Fonts
Re: Stylized Fonts
Anyway, without installing the whole TeX-Gyre bundle,you can use the zapf chancery from urw, which belongs to all distributions, and psnfss, which you do have (it is one of the 'required' packages). It has a style file which declares that font as the default for roman fonts. As I suppose you just want to use it on a small part of your document, the simplest way would be to define in your preamble an environment for that purpose, say calligraphic (I suppose you use T1 encoding; if you use OT1, just modify accordingly):
\newenvironment{calligraphic}%
{\usefont{T1}{pzc}{m}{it}}%
{}%
That's all. The other files required to use the font (.fd, .tfm, .vf, .pfb and .afm) are already installed either in psnfss or in the bundle for the free urw fonts. In the document, you then have only to write
\begin{calligraphic}
blahblah...
\end{calligraphic}
Ordinary text....
I hope this is clear.
Best regards,
B.A.
Re: Stylized Fonts
Re: Stylized Fonts
B.A.