-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

LaTeX Beginner's Guide

Imagine that we start to write an article about LaTeX's Internet resources. To get a clearly readable heading, we shall use a font without frills. The body text will contain a web address; we choose a typewriter font to stress it:
Create a LaTeX document with the following code:
\documentclass{article} \begin{document} \section{\textsf{\LaTeX\ resources on the internet}} The best place for downloading LaTeX related software is CTAN. Its address is \texttt{http://www.ctan.org}. \end{document}
Typeset and look at the result:
We encountered more font commands. By using \textsf
, we've chosen the sans-serif font in the section heading. We used the command \texttt
to get the typewriter font for the web address. Those commands can be used just like the font commands we've learned before.
The letters in the LaTeX standard font have so-called serifs , those small decorative details at the end of a letter's strokes. Serifs...