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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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.