Text FormattingGaramond font ?

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
gouchi
Posts: 2
Joined: Mon Aug 31, 2009 1:34 pm

Garamond font ?

Post by gouchi »

Hi,
I've installed garamond font by :

Code: Select all

getnonfreefonts-sys garamond
Here's some sample :

Code: Select all

\documentclass[a4paper,14pt]{report}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{garamond}
\begin{document}
\textbf{test}
\end{document}

And I always get this error :

Code: Select all

pdflatex main.tex 
This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6)
 %&-line parsing enabled.
entering extended mode
(./main.tex
LaTeX2e <2005/12/01>
Babel <v3.8h> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, loaded.
(/usr/share/texmf-texlive/tex/latex/base/report.cls
Document Class: report 2005/09/16 v1.4f Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size10.clo))
(/usr/share/texmf-texlive/tex/latex/base/fontenc.sty
(/usr/share/texmf-texlive/tex/latex/base/t1enc.def))
(/usr/share/texmf-texlive/tex/latex/base/inputenc.sty
(/usr/share/texmf-texlive/tex/latex/base/latin1.def))
(/usr/share/texmf-texlive/tex/latex/psnfssx/garamond.sty)

LaTeX Warning: Unused global option(s):
    [14pt].

No file main.aux.

LaTeX Font Warning: Font shape `T1/pgm/m/n' undefined
(Font)              using `T1/cmr/m/n' instead on input line 5.


LaTeX Font Warning: Font shape `T1/pgm/bx/n' undefined
(Font)              using `T1/pgm/m/n' instead on input line 6.

[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./main.aux)

LaTeX Font Warning: Some font shapes were not available, defaults substituted.

 ) </home/gouchi/.texmf-var/fonts/pk/ljfour/jknappen/ec/ecrm1000.600pk>
Output written on main.pdf (1 page, 2749 bytes).
Transcript written on main.log.
Same error If I want to use garamond italic font.
I can't have bold or italic font.

Any tips ?

Thank you, best regards.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

Garamond font ?

Post by meho_r »

There were discussions about garamond font before. Take a look here. Shortly put, instead of \usepackage{garamond} you should try with:

Code: Select all

\usepackage[urw-garamond]{mathdesign}
gouchi
Posts: 2
Joined: Mon Aug 31, 2009 1:34 pm

Re: Garamond font ?

Post by gouchi »

Thanks for the tips.
Post Reply