Support
for
logical
structures
such
as:
-
Sectional
units
-
Lists
- Tables
\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}
|
<h3>Contents</h3>
<div>
1 <a href="#sec1">Nested Lists & A Table</a>
<br/> 1.1 <a href="#sec1.1">Nested Lists</a>
<br/> 1.2 <a href="#sec1.2">A Table</a>
<br/>2 <a href="#sec2">A Citation</a>
</div>
<h3>1 <a id="sec1"/>Nested Lists & A Table</h3>
<h4>1.1 <a id="sec1.1"/>Nested Lists</h4>
<p>Two kinds of lists: </p>
<ul>
<li>First item
<ol><li>Sub item </li><li>Sub item</li></ol>
</li>
<li>Second item</li>
</ul>
<h4>1.2 <a id="sec1.2"/>A Table</h4>
<div>
<table>
<colgroup>
<col/>
<col/>
<col/>
</colgroup>
<tr>
<td>one</td>
<td>two</td>
<td>three</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</table>
</div>
<h3>2 <a id="sec2"/>A Citation</h3>
<p>See [<a href="#bib">1</a>]. </p>
<h3><a id="sec3"/>References</h3>
<div>
<p> [1] <a id="bib"/>A bib entry. </p>
</div>
|
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
|
|