What Is L Tex?: Lingua Franca
What Is L Tex?: Lingua Franca
1
What Is Markup Language?
Instead of 2 we write
Instead of $\alpha2$ we write
Instead of
2 + 2 = 2
we write
Instead of
\[
\alpha2+\beta2=\gamma2
\]
we write
2
Text Formatting
New paragraphs are indicated by an empty line. In the source file the
text does not have to be arranged for paragraphing purposes.
3
To process a marked up LATEX file (ending with suffix .tex) you need
software, see LATEX processing software
You embed hyperlinks into your pdf document as shown above via
\usepackage{hyperref}
% in the preamble, followed in the document by
\href{http://www.ctan.org/starter.html}{%
\LaTeX~processing software}
4
The basic structure of a filename.tex file containing the text and
LATEX markup commands is as follows.
\begin{document}
Some text with markup language interspersed.
\end{document}
5