From f7ad3618f1711c67384e3561704cb1b2d27eb68d Mon Sep 17 00:00:00 2001 From: Kenneth Odle Date: Thu, 8 Aug 2024 11:49:35 -0400 Subject: [PATCH] Updates to outlines chapter --- 005/codex-005.tex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/005/codex-005.tex b/005/codex-005.tex index 5e67897..865c4f4 100644 --- a/005/codex-005.tex +++ b/005/codex-005.tex @@ -719,7 +719,7 @@ and then you use the \texttt{outline} environment like this: \2 Another sub-item \2 A fourth sub-item \3 A sub-sub-item - \3 Yet another sub-item + \3 Yet another sub-sub-item \end{outline} \end{Verbatim} @@ -733,7 +733,7 @@ which gives us this beautiful outline: \2 Another sub-item \2 A fourth sub-item \3 A sub-sub-item - \3 Yet another sub-item + \3 Yet another sub-sub-item \end{outline} The indents in your source code are absolutely not necessary, but you can indent with tabs or spaces to help you keep visual track of things. The actual levels are controlled by the number after the backslash. @@ -751,7 +751,7 @@ You are limited to four levels of indentation. (This is a part of \LaTeX{}.\foot \1 Second Item \2 Another sub-item \3 A sub-sub-item - \3 Yet another sub-item + \3 Yet another sub-sub-item \end{outline} \end{Verbatim} @@ -765,7 +765,7 @@ gives us this: \1 Second Item \2 Another sub-item \3 A sub-sub-item - \3 Yet another sub-item + \3 Yet another sub-sub-item \end{outline} This also resets all the counters after that normal paragraph. I think this is fairly typical behavior for outlines, however, so I am okay with this.