summaryrefslogtreecommitdiff
path: root/Master/texmf-doc/doc/english/guide-to-latex/exercises/chap4/exer4-4.tex
blob: 852050a335c87badc3a3d23ecf4d6f433f09d886 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
\documentclass{article}
\begin{document}
A forfould nestin of the itemize an environment appears as follows:
\begin{itemize}
  \item The label for the first level is a black dot, a \emph{bullet}.
  \begin{itemize}
     \item That of the second level is a long dash (en dash).
     \begin{itemize}
        \item That of the third level is an asterisk.
        \begin{itemize}
           \item And the label for the fourth level is an upshifted dot.
           \item At the same time, the vertical spacing is decrease with
                 increasing depth.
        \end{itemize}  
        \item Back to the third level.
        \item Each level may contain several labels of the same degree,
        \item as shown here for third level.
     \end{itemize}
     \item Back to the second level.
  \end{itemize}
  \item And here we are at the first level of the itemize list again.
  \item The standard label markers for each level can be changed by
        the user
  \item as demonstrated with the solution example for exercise 4.6.
\end{itemize}
Similary for the enumerate environment, where the style of numberin changes
with the nesting level:
\begin{enumerate}
  \item The numbering at the first level is with Arabic numerals followed
        by a period.
  \begin{enumerate}
    \item At the second level, it is with lower case letters in paranthesis.
    \begin{enumerate}
      \item The third level is numbered with lower case Roman numerals
            with a period.
      \begin{enumerate}
        \item At the fourth level, capital letters are used.
        \item The label style can be changed as shown in the solution
              example for exercise 4.7.
      \end{enumerate}
      \item Back to the third level.
    \end{enumerate}
    \item Back to the second level.
    \item Also the enumerat environment may contain in every level
          several labels of the same degree,
    \item as shown here for the second level.
  \end{enumerate}
  \item Each level should contain at least two labels,
  \item but formally less labels are allowed!
\end{enumerate}                   
\end{document}