Support
for
logical
structures
such
as:
-
Sectional
units
-
Lists
- Tables
|
-
Tables
of
contents
-
Bibliographies
- Indexes
|
\documentclass{article}
\begin{document}
\tableofcontents
\section{Nested Lists \& A Table}
\subsection{Nested Lists}
Two kinds of lists:
\begin{itemize}
\item First item
\begin{enumerate}
\item Sub item
\item Sub item
\end{enumerate}
\item Second item
\end{itemize}
\subsection{A Table}
\begin{tabular}{ccc}
one & two & three \\
1 & 2 & 3
\end{tabular}
\section{A Citation}
See \cite{abc}.
\begin{thebibliography}{99}
\bibitem{abc} A bib entry.
\end{thebibliography}
\end{document}
|
Contents 1 Nested Lists & A Table 1.1 Nested Lists Two kinds of lists: - First item
- Sub item
- Sub item
- Second item
1.2 A Table 2 A Citation See [1]. References
|
|