Previous: Font sizes, Up: Fonts [Contents][Index]
These commands are primarily intended for writers of macros and packages. The commands listed here are only a subset of the available ones.
\fontencoding{encoding}
¶ Select the font encoding, the encoding of the output font. There are a
large number of valid encodings. The most common are OT1
,
Knuth’s original encoding for Computer Modern (the default), and
T1
, also known as the Cork encoding, which has support for the
accented characters used by the most widespread European languages
(German, French, Italian, Polish and others), which allows TeX to
hyphenate words containing accented letters. For more, see
https://ctan.org/pkg/encguide.
\fontfamily{family}
¶ Select the font family. The web page https://tug.org/FontCatalogue/ provides one way to browse through many of the fonts easily used with LaTeX. Here are examples of some common families.
pag
Avant Gardefvs
Bitstream Vera Sanspbk
Bookmanbch
Charterccr
Computer Concretecmr
Computer Moderncmss
Computer Modern Sans Serifcmtt
Computer Modern Typewriterpcr
Courierphv
Helveticafi4
Inconsolatalmr
Latin Modernlmss
Latin Modern Sanslmtt
Latin Modern Typewriterpnc
New Century Schoolbookppl
Palatinoptm
Timesuncl
Uncialput
Utopiapzc
Zapf Chancery\fontseries{series}
¶ Select the font series. A series combines a weight and a width. Typically, a font supports only a few of the possible combinations. Some common combined series values include:
m
Medium (normal)b
Boldc
Condensedbc
Bold condensedbx
Bold extendedThe possible values for weight, individually, are:
ul
Ultra lightel
Extra lightl
Lightsl
Semi lightm
Medium (normal)sb
Semi boldb
Boldeb
Extra boldub
Ultra boldThe possible values for width, individually, are (the meaning and relationship of these terms varies with individual typefaces):
uc
Ultra condensedec
Extra condensedc
Condensedsc
Semi condensedm
Mediumsx
Semi expandedx
Expandedex
Extra expandedux
Ultra expandedWhen forming the series string from the weight and width, drop the
m
that stands for medium weight or medium width, unless both
weight and width are m
, in which case use just one
(‘m
’).
\fontshape{shape}
¶ Select font shape. Valid shapes are:
n
Upright (normal)it
Italicsl
Slanted (oblique)sc
Small capsui
Upright italicsol
OutlineThe two last shapes are not available for most font families, and small caps are often missing as well.
\fontsize{size}{skip}
¶ Set the font size and the line spacing. The unit of both parameters
defaults to points (pt
). The line spacing is the nominal
vertical space between lines, baseline to baseline. It is stored in the
parameter \baselineskip
. The default \baselineskip
for
the Computer Modern typeface is 1.2 times the \fontsize
.
Changing \baselineskip
directly is inadvisable since its value is
reset every time a size change happens; instead use
\baselinestretch
. (see \baselineskip
& \baselinestretch
).
\linespread{factor}
¶ Equivalent to \renewcommand{\baselinestretch}{factor}
,
and therefore must be followed by \selectfont
to have any
effect. Best specified in the preamble. See \baselineskip
& \baselinestretch
, for using setspace
package instead.
\selectfont
¶ The effects of the font commands described above do not happen until
\selectfont
is called, as in
\fontfamily{familyname}\selectfont
. It is often useful
to put this in a macro:
\newcommand*{\myfont}{\fontfamily{familyname}\selectfont}
(see \newcommand
& \renewcommand
).
\usefont{enc}{family}{series}{shape}
¶ The same as invoking \fontencoding
, \fontfamily
,
\fontseries
and \fontshape
with the given parameters,
followed by \selectfont
. For example:
\usefont{ot1}{cmr}{m}{n}