File: refsalt.tex

package info (click to toggle)
pdftk-java 3.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,992 kB
  • sloc: java: 48,283; xml: 202; sh: 55; perl: 19; makefile: 10
file content (28 lines) | stat: -rw-r--r-- 528 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
\documentclass{article}

\usepackage{hyperref}
\usepackage{pgffor}
\usepackage{tgpagella}
\usepackage{tikzducks}

\begin{document}

\foreach \x in {1,...,8} {
  \section {Section \x}
  \label{sec:\x}
  This is Section \x.
  Here are references to all sections.
  \foreach \y in {1,...,8} {
    \subsection {A reference to Section \y}
    A reference to Section \ref{sec:\y}.
  }

  Let us conclude the section with a swimming duck
  \begin{tikzpicture}
    \duck[water=blue]
  \end{tikzpicture}.

  \clearpage
}

\end{document}