asciidoctor-latex 1.5.0.3.dev → 1.5.0.4.dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.adoc +28 -5
  3. data/README.adoc +48 -23
  4. data/Rakefile +2 -1
  5. data/data/asciidoc_tex_macros.tex +86 -3
  6. data/data/extras.css +73 -1
  7. data/data/preamble_article.tex +15 -6
  8. data/data/preamble_book.tex +25 -9
  9. data/examples/README.adoc +341 -9
  10. data/examples/README.html +915 -0
  11. data/examples/math_article.adoc +46 -46
  12. data/examples/xref-equations.adoc +1 -2
  13. data/lib/asciidoctor-latex/click.css +2 -0
  14. data/lib/asciidoctor-latex/click.js +6 -0
  15. data/lib/asciidoctor-latex/jquery.js +4 -0
  16. data/lib/asciidoctor-latex/preamble_processor.rb +18 -0
  17. data/lib/asciidoctor/latex/click_block.rb +7 -4
  18. data/lib/asciidoctor/latex/converter.rb +75 -29
  19. data/lib/asciidoctor/latex/core_ext/utility.rb +55 -0
  20. data/lib/asciidoctor/latex/css.rb +50 -0
  21. data/lib/asciidoctor/latex/environment_block.rb +13 -6
  22. data/lib/asciidoctor/latex/inject_html.rb +2 -1
  23. data/lib/asciidoctor/latex/node_processors.rb +329 -152
  24. data/lib/asciidoctor/latex/prepend_processor.rb +1 -0
  25. data/lib/asciidoctor/latex/tex_postprocessor.rb +8 -3
  26. data/lib/asciidoctor/latex/tex_preprocessor.rb +31 -9
  27. data/lib/asciidoctor/latex/version.rb +1 -1
  28. data/test/examples/adoc/ampersand.adoc +2 -0
  29. data/test/examples/adoc/block_olist.adoc +58 -0
  30. data/test/examples/adoc/block_ulist.adoc +42 -0
  31. data/test/examples/adoc/box.adoc +35 -1
  32. data/test/examples/adoc/chem.adoc +8 -0
  33. data/test/examples/adoc/click_plain.adoc +24 -0
  34. data/test/examples/adoc/dlist.adoc +15 -0
  35. data/test/examples/adoc/env2.adoc +57 -0
  36. data/test/examples/adoc/env_joke.adoc +12 -0
  37. data/test/examples/adoc/env_plain.adoc +10 -0
  38. data/test/examples/adoc/eq-latex.adoc +39 -0
  39. data/test/examples/adoc/eq.adoc +18 -0
  40. data/test/examples/adoc/eq.tex +28 -0
  41. data/test/examples/adoc/eqalign.adoc +19 -6
  42. data/test/examples/adoc/eqalign.tex +25 -0
  43. data/test/examples/adoc/eqno-latex.adoc +120 -0
  44. data/test/examples/adoc/extras.adoc +14 -0
  45. data/test/examples/adoc/hypertarget.adoc +29 -0
  46. data/test/examples/adoc/image.adoc +7 -0
  47. data/test/examples/adoc/newEnvironments.tex +0 -0
  48. data/test/examples/adoc/table.adoc +6 -0
  49. data/test/examples/adoc/table.tex +10 -0
  50. data/test/examples/adoc/tex_pathologies.adoc +30 -0
  51. data/test/examples/html/env.html +147 -0
  52. data/test/examples/html/equations.html +14 -0
  53. data/test/examples/tex/ampersand.tex +2 -0
  54. data/test/examples/tex/block_admonition.tex +20 -0
  55. data/test/examples/tex/block_audio.tex +7 -0
  56. data/test/examples/tex/block_colist.tex +23 -0
  57. data/test/examples/tex/block_dlist.tex +117 -0
  58. data/test/examples/tex/block_example.tex +20 -0
  59. data/test/examples/tex/block_floating_title.tex +20 -0
  60. data/test/examples/tex/block_image.tex +46 -0
  61. data/test/examples/tex/block_listing.tex +59 -0
  62. data/test/examples/tex/block_literal.tex +28 -0
  63. data/test/examples/tex/block_olist.tex +119 -0
  64. data/test/examples/tex/block_open.tex +22 -0
  65. data/test/examples/tex/block_outline.tex +25 -0
  66. data/test/examples/tex/block_page_break.tex +4 -0
  67. data/test/examples/tex/block_paragraph.tex +13 -0
  68. data/test/examples/tex/block_pass.tex +3 -0
  69. data/test/examples/tex/block_preamble.tex +15 -0
  70. data/test/examples/tex/block_quote.tex +51 -0
  71. data/test/examples/tex/block_sidebar.tex +21 -0
  72. data/test/examples/tex/block_stem.tex +19 -0
  73. data/test/examples/tex/block_table.tex +188 -0
  74. data/test/examples/tex/block_thematic_break.tex +1 -0
  75. data/test/examples/tex/block_toc.tex +27 -0
  76. data/test/examples/tex/block_ulist.tex +96 -0
  77. data/test/examples/tex/block_verse.tex +39 -0
  78. data/test/examples/tex/block_video.tex +15 -0
  79. data/test/examples/tex/box.tex +25 -0
  80. data/test/examples/tex/chem.tex +7 -0
  81. data/test/examples/tex/click_plain.tex +25 -0
  82. data/test/examples/tex/dlist.tex +17 -0
  83. data/test/examples/tex/document.tex +25 -0
  84. data/test/examples/tex/embedded.tex +7 -0
  85. data/test/examples/tex/env.tex +7 -7
  86. data/test/examples/tex/env2.tex +29 -0
  87. data/test/examples/tex/env_joke.tex +9 -0
  88. data/test/examples/tex/env_plain.tex +7 -0
  89. data/test/examples/tex/eq-latex.tex +49 -0
  90. data/test/examples/tex/eq.tex +9 -0
  91. data/test/examples/tex/eqalign.tex +23 -0
  92. data/test/examples/tex/eqno-latex.tex +237 -0
  93. data/test/examples/tex/exponent1.tex +2 -0
  94. data/test/examples/tex/exponent2.tex +4 -0
  95. data/test/examples/tex/extras.tex +13 -0
  96. data/test/examples/tex/hypertarget.tex +25 -0
  97. data/test/examples/tex/image.tex +4 -0
  98. data/test/examples/tex/inline_anchor.tex +25 -0
  99. data/test/examples/tex/inline_break.tex +7 -0
  100. data/test/examples/tex/inline_button.tex +1 -0
  101. data/test/examples/tex/inline_callout.tex +4 -0
  102. data/test/examples/tex/inline_footnote.tex +9 -0
  103. data/test/examples/tex/inline_image.tex +25 -0
  104. data/test/examples/tex/inline_kbd.tex +3 -0
  105. data/test/examples/tex/inline_menu.tex +5 -0
  106. data/test/examples/tex/inline_quoted.tex +63 -0
  107. data/test/examples/tex/line_break.tex +4 -0
  108. data/test/examples/tex/listing.tex +10 -0
  109. data/test/examples/tex/literal.tex +42 -0
  110. data/test/examples/tex/macro_underscore.tex +6 -0
  111. data/test/examples/tex/math.tex +8 -0
  112. data/test/examples/tex/open_block.tex +10 -0
  113. data/test/examples/tex/page_break.tex +4 -0
  114. data/test/examples/tex/pass.tex +3 -0
  115. data/test/examples/tex/section.tex +51 -0
  116. data/test/examples/tex/sections.tex +13 -0
  117. data/test/examples/tex/table.tex +10 -0
  118. data/test/examples/tex/tex_pathologies.tex +26 -0
  119. data/test/examples/tex/zero.tex +1 -1
  120. metadata +188 -26
  121. data/examples/box.adoc +0 -16
  122. data/examples/chem.adoc +0 -17
  123. data/examples/eq-alignment.adoc +0 -5
  124. data/examples/eq-block.adoc +0 -60
  125. data/test/examples/adoc/admonition.adoc +0 -11
  126. data/test_jc/admonition.adoc +0 -4
  127. data/test_jc/click.adoc +0 -7
  128. data/test_jc/env.adoc +0 -31
  129. data/test_jc/example.adoc +0 -17
  130. data/test_jc/floating_title.adoc +0 -15
  131. data/test_jc/image.adoc +0 -84
  132. data/test_jc/images/frog.jpg +0 -0
  133. data/test_jc/images/red_frog.jpeg +0 -0
  134. data/test_jc/images/yellow_frog.jpeg +0 -0
  135. data/test_jc/listing.adoc +0 -9
  136. data/test_jc/lists.adoc +0 -20
  137. data/test_jc/math.adoc +0 -10
  138. data/test_jc/preamble.adoc +0 -14
  139. data/test_jc/section-numbered.adoc +0 -9
  140. data/test_jc/section.adoc +0 -7
  141. data/test_jc/sidebar.adoc +0 -61
  142. data/test_jc/verse.adoc +0 -15
@@ -0,0 +1,22 @@
1
+ %== .basic ==%
2
+ An open block can be an anonymous container,
3
+ or it can masquerade as any other block.
4
+
5
+ %== .basic_with_title ==%
6
+ An open block can be an anonymous container,
7
+ or it can masquerade as any other block.
8
+
9
+ %== .basic_with_id_and_role ==%
10
+ An open block can be an anonymous container,
11
+ or it can masquerade as any other block.
12
+
13
+ %== .abstract ==%
14
+ This is an abstract quote block.
15
+
16
+ %== .abstract_with_title ==%
17
+ This is an abstract quote block.
18
+ Who knows what it really means?
19
+
20
+ %== .abstract_with_id_and_role ==%
21
+ This is an abstract quote block.
22
+ Who knows what it really means?
@@ -0,0 +1,25 @@
1
+ %== .basic ==%
2
+ \hypertarget{_section_1}{\section*{Section 1}}
3
+ \hypertarget{_section_2}{\section*{Section 2}}
4
+ \hypertarget{_section_2.1}{\subsection*{Section 2.1}}
5
+ \hypertarget{_section_2.1.1}{\subsubsection*{Section 2.1.1}}
6
+ \hypertarget{_section_3}{\section*{Section 3}}
7
+
8
+ %== .toclevels ==%
9
+ \hypertarget{_section_1}{\section*{Section 1}}
10
+ \hypertarget{_section_1.1}{\subsection*{Section 1.1}}
11
+ \hypertarget{_section_1.1.1}{\subsubsection*{Section 1.1.1}}
12
+ \hypertarget{_section_2}{\section*{Section 2}}
13
+
14
+ %== .numbered ==%
15
+ \hypertarget{_section_1}{\section{Section 1}}
16
+ \hypertarget{_unnumbered_section}{\section*{Unnumbered Section}}
17
+ \hypertarget{_section_2}{\section{Section 2}}
18
+ \hypertarget{_section_2.1}{\subsection{Section 2.1}}
19
+ \hypertarget{_section_3}{\section{Section 3}}
20
+
21
+ %== .sectnumlevels ==%
22
+ \hypertarget{_section_1}{\section{Section 1}}
23
+ \hypertarget{_section_1.1}{\subsection{Section 1.1}}
24
+ \hypertarget{_section_1.1.1}{\subsubsection{Section 1.1.1}}
25
+ \hypertarget{_section_2}{\section{Section 2}}
@@ -0,0 +1,4 @@
1
+ %== .basic ==%
2
+ Text on the first page
3
+ \vfill\eject
4
+ was breaked!
@@ -0,0 +1,13 @@
1
+ %== .basic ==%
2
+ Paragraphs don’t require any special markup in AsciiDoc.
3
+ A paragraph is just one or more lines of consecutive text.
4
+ To begin a new paragraph, separate it by at least one blank line.
5
+
6
+ %== .with_title ==%
7
+ {\bf Paragraphs.} Paragraphs don’t require any special markup in AsciiDoc.
8
+ A paragraph is just one or more lines of consecutive text.
9
+ To begin a new paragraph, separate it by at least one blank line.
10
+
11
+ %== .with_id_and_role ==%
12
+ \rolered{Paragraphs don’t require any special markup in AsciiDoc.
13
+ A paragraph is just one or more lines of consecutive text.}
@@ -0,0 +1,3 @@
1
+ %== .basic ==%
2
+ <p>Allons-y!</p>
3
+ image:tiger.png[]
@@ -0,0 +1,15 @@
1
+ %== .basic ==%
2
+ \begin{preamble}
3
+ This journey begins on a bleary Monday morning.
4
+ Our intrepid team is in desperate need of double shot mochas, but the milk expired eight days ago.
5
+ \end{preamble}
6
+ \hypertarget{_cavern_glow}{\section*{Cavern Glow}}
7
+ The river rages through the cavern, rattling its content.
8
+
9
+ %== .toc_placement_preamble ==%
10
+ \begin{preamble}
11
+ This journey begins on a bleary Monday morning.
12
+ Our intrepid team is in desperate need of double shot mochas, but the milk expired eight days ago.
13
+ \end{preamble}
14
+ \hypertarget{_cavern_glow}{\section*{Cavern Glow}}
15
+ The river rages through the cavern, rattling its content.
@@ -0,0 +1,51 @@
1
+ ONE
2
+
3
+
4
+ \begin{quotation}
5
+ Four score and seven years ago our fathers brought forth
6
+ on this continent a new nation…​
7
+ \end{quotation}
8
+
9
+ TWO
10
+
11
+
12
+ \begin{aquote}{Albert Einstein}{}
13
+ A person who never made a mistake never tried anything new.
14
+ \end{aquote}
15
+
16
+ THEREE
17
+
18
+
19
+ \begin{aquote}{Captain James T. Kirk}{{\bf Star Trek IV: The Voyage Home} \\}
20
+ Everybody remember where we parked.
21
+ \end{aquote}
22
+
23
+ FOUR
24
+
25
+
26
+ \begin{tquote}{After landing the cloaked Klingon ship:}
27
+ Everybody remember where we parked.
28
+ \end{tquote}
29
+
30
+ FIVE
31
+
32
+
33
+ \begin{quotation}
34
+ Everybody remember where we parked.
35
+ \end{quotation}
36
+
37
+ \begin{quotation}
38
+ Dennis: Come and see the violence inherent in the system. Help! Help! I’m being repressed!
39
+
40
+
41
+ King Arthur: Bloody peasant!
42
+
43
+
44
+ Dennis: Oh, what a giveaway! Did you hear that? Did you hear that, eh?
45
+
46
+
47
+ \begin{verbatim}
48
+
49
+ \end{verbatim}
50
+ \end{quotation}
51
+
@@ -0,0 +1,21 @@
1
+ %== .basic ==%
2
+ \begin{sidebar}
3
+ AsciiDoc was first released in Nov 2002 by Stuart Rackham.
4
+ It was designed from the start to be a shorthand syntax
5
+ for producing professional documents like DocBook and LaTeX.
6
+ \end{sidebar}
7
+
8
+ %== .with_title ==%
9
+ \begin{sidebar}
10
+ \bf{AsciiDoc history}\\AsciiDoc was first released in Nov 2002 by Stuart Rackham.
11
+ It was designed from the start to be a shorthand syntax
12
+ for producing professional documents like DocBook and LaTeX.
13
+ \end{sidebar}
14
+
15
+ %== .with_id_and_role ==%
16
+ \begin{sidebar}
17
+ \hypertarget{origin}{AsciiDoc was first released in Nov 2002 by Stuart Rackham.
18
+ It was designed from the start to be a shorthand syntax
19
+ for producing professional documents like DocBook and LaTeX.
20
+ }
21
+ \end{sidebar}
@@ -0,0 +1,19 @@
1
+ %== .asciimath ==%
2
+ \[
3
+ sqrt(4) = 2
4
+ \]
5
+
6
+ %== .latexmath ==%
7
+ \[
8
+ C = \alpha + \beta Y^{\gamma} + \epsilon
9
+ \]
10
+
11
+ %== .with_title ==%
12
+ \[
13
+ sqrt(4) = 2
14
+ \]
15
+
16
+ %== .with_id_and_role ==%
17
+ \[
18
+ sqrt(4) = 2
19
+ \]
@@ -0,0 +1,188 @@
1
+ %== .basic ==%
2
+ \begin{center}
3
+ \begin{tabular}{|c|c|}
4
+ \hline
5
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
6
+ Cell in column 1, row 2 & Cell in column 2, row 2 \\
7
+ \hline
8
+ \end{tabular}
9
+ \end{center}
10
+
11
+ %== .with_frame_sides ==%
12
+ \begin{center}
13
+ \begin{tabular}{|c|c|}
14
+ \hline
15
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
16
+ \hline
17
+ \end{tabular}
18
+ \end{center}
19
+
20
+ %== .with_grid_cols ==%
21
+ \begin{center}
22
+ \begin{tabular}{|c|c|}
23
+ \hline
24
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
25
+ \hline
26
+ \end{tabular}
27
+ \end{center}
28
+
29
+ %== .with_float ==%
30
+ \begin{center}
31
+ \begin{tabular}{|c|c|}
32
+ \hline
33
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
34
+ \hline
35
+ \end{tabular}
36
+ \end{center}
37
+
38
+ %== .with_width ==%
39
+ \begin{center}
40
+ \begin{tabular}{|c|c|}
41
+ \hline
42
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
43
+ \hline
44
+ \end{tabular}
45
+ \end{center}
46
+
47
+ %== .with_autowidth ==%
48
+ \begin{center}
49
+ \begin{tabular}{|c|c|}
50
+ \hline
51
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
52
+ \hline
53
+ \end{tabular}
54
+ \end{center}
55
+
56
+ %== .with_title ==%
57
+ \begin{center}
58
+ \begin{tabular}{|c|c|}
59
+ \hline
60
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
61
+ \hline
62
+ \end{tabular}
63
+ \end{center}
64
+
65
+ %== .with_id_and_role ==%
66
+ \begin{center}
67
+ \begin{tabular}{|c|c|}
68
+ \hline
69
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
70
+ \hline
71
+ \end{tabular}
72
+ \end{center}
73
+
74
+ %== .with_header ==%
75
+ \begin{center}
76
+ \begin{tabular}{|c|c|}
77
+ \hline
78
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
79
+ Cell in column 1, row 2 & Cell in column 2, row 2 \\
80
+ \hline
81
+ \end{tabular}
82
+ \end{center}
83
+
84
+ %== .with_footer ==%
85
+ \begin{center}
86
+ \begin{tabular}{|c|c|}
87
+ \hline
88
+ Cell in column 1, row 1 & Cell in column 2, row 1 \\
89
+ Cell in column 1, row 2 & Cell in column 2, row 2 \\
90
+ \hline
91
+ \end{tabular}
92
+ \end{center}
93
+
94
+ %== .with_cols_width ==%
95
+ \begin{center}
96
+ \begin{tabular}{|c|c|c|}
97
+ \hline
98
+ Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
99
+ \hline
100
+ \end{tabular}
101
+ \end{center}
102
+
103
+ %== .with_cols_halign ==%
104
+ \begin{center}
105
+ \begin{tabular}{|c|c|c|}
106
+ \hline
107
+ Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
108
+ \hline
109
+ \end{tabular}
110
+ \end{center}
111
+
112
+ %== .with_cols_valign ==%
113
+ \begin{center}
114
+ \begin{tabular}{|c|c|c|}
115
+ \hline
116
+ Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
117
+ \hline
118
+ \end{tabular}
119
+ \end{center}
120
+
121
+ %== .with_cols_styles ==%
122
+ \begin{center}
123
+ \begin{tabular}{|c|c|c|c|c|c|c|}
124
+ \hline
125
+ \ & \emph{Emphasized text} & Styled like a header & \unknown\{Literal block\} & {\tt Monospaced text} & \textbf{Strong text} & \unknown\{Verse block\} \\
126
+ \hline
127
+ \end{tabular}
128
+ \end{center}
129
+
130
+ %== .colspan ==%
131
+ \begin{center}
132
+ \begin{tabular}{|c|c|c|}
133
+ \hline
134
+ Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
135
+ Content in a single cell that spans columns 1 and 3 & Cell in column 3, row 1 \\
136
+ \hline
137
+ \end{tabular}
138
+ \end{center}
139
+
140
+ %== .rowspan ==%
141
+ \begin{center}
142
+ \begin{tabular}{|c|c|c|}
143
+ \hline
144
+ Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
145
+ Content in a single cell that spans rows 2 and 3 & Cell in column 2, row 2 & Cell in column 3, row 2 \\
146
+ Cell in column 2, row 3 & Cell in column 3, row 3 \\
147
+ \hline
148
+ \end{tabular}
149
+ \end{center}
150
+
151
+ %== .cell_with_paragraphs ==%
152
+ \begin{center}
153
+ \begin{tabular}{|c|}
154
+ \hline
155
+ Single paragraph on row 1 \\
156
+ First paragraph on row 2
157
+ \\
158
+ \hline
159
+ \end{tabular}
160
+ \end{center}
161
+
162
+ %== .aligns_per_cell ==%
163
+ \begin{center}
164
+ \begin{tabular}{|c|c|c|}
165
+ \hline
166
+ Prefix the {vbar} with {caret} to center content horizontally & Prefix the {vbar} with < to align the content to the left horizontally & Prefix the {vbar} with > to align the content to the right horizontally \\
167
+ Prefix the {vbar} with a . and {caret} to center the content in the cell vertically & Prefix the {vbar} with a . and < to align the content to the top of the cell & Prefix the {vbar} with a . and > to align the content to the bottom of the cell \\
168
+ This content spans three columns (3{plus}) and is centered horizontally ({caret}) and vertically (.{caret}) within the cell. \\
169
+ \hline
170
+ \end{tabular}
171
+ \end{center}
172
+
173
+ %== .insane_cells_formatting ==%
174
+ \begin{center}
175
+ \begin{tabular}{|c|c|}
176
+ \hline
177
+ {\tt This content is duplicated across two columns.
178
+ } & {\tt This content is duplicated across two columns.
179
+ } \\
180
+ \textbf{This cell spans 3 rows. The content is centered horizontally, aligned to the bottom of the cell, and strong.} & \emph{This content is emphasized.} \\
181
+ \unknown\{This content is aligned to the top of the cell and literal.\} \\
182
+ \unknown\{This cell contains a verse
183
+ that may one day expound on the
184
+ wonders of tables in an
185
+ epic sonnet.\} \\
186
+ \hline
187
+ \end{tabular}
188
+ \end{center}
@@ -0,0 +1 @@
1
+ %== .basic ==%
@@ -0,0 +1,27 @@
1
+ %== .basic ==%
2
+ \section*{Introduction}
3
+ \hypertarget{_introduction}{}
4
+ \section*{The Ravages of Writing}
5
+ \hypertarget{_the_ravages_of_writing}{\subsection*{A Recipe for Potion}}
6
+ \subsection*{A Recipe for Potion}
7
+ \hypertarget{_a_recipe_for_potion}{}
8
+
9
+ %== .with_title ==%
10
+ \section*{Introduction}
11
+ \hypertarget{_introduction}{}
12
+ \section*{The Ravages of Writing}
13
+ \hypertarget{_the_ravages_of_writing}{}
14
+
15
+ %== .with_levels ==%
16
+ \section*{Introduction}
17
+ \hypertarget{_introduction}{}
18
+ \section*{The Ravages of Writing}
19
+ \hypertarget{_the_ravages_of_writing}{\subsection*{A Recipe for Potion}}
20
+ \subsection*{A Recipe for Potion}
21
+ \hypertarget{_a_recipe_for_potion}{}
22
+
23
+ %== .with_id_and_role ==%
24
+ \section*{Introduction}
25
+ \hypertarget{_introduction}{}
26
+ \section*{The Ravages of Writing}
27
+ \hypertarget{_the_ravages_of_writing}{}
@@ -0,0 +1,96 @@
1
+ \begin{itemize}
2
+
3
+ \item Edgar Allen Poe
4
+
5
+ \item Sheri S. Tepper
6
+
7
+ \item Bill Bryson
8
+
9
+ \end{itemize}
10
+
11
+
12
+ \begin{itemize}
13
+
14
+ \item Edgar Allen Poe
15
+
16
+ \item Sheri S. Tepper
17
+
18
+ \item Bill Bryson
19
+
20
+ \end{itemize}
21
+
22
+
23
+ \begin{itemize}
24
+
25
+ \item Edgar Allen Poe
26
+
27
+ \item Sheri S. Tepper
28
+
29
+ \item Bill Bryson
30
+
31
+ \end{itemize}
32
+
33
+
34
+ \begin{itemize}
35
+
36
+ \item level 1
37
+
38
+ \begin{itemize}
39
+
40
+ \item level 2
41
+
42
+ \begin{itemize}
43
+
44
+ \item level 3
45
+
46
+ \begin{itemize}
47
+
48
+ \item level 4
49
+
50
+ \end{itemize}
51
+
52
+ \end{itemize}
53
+
54
+ \item level 2
55
+
56
+ \end{itemize}
57
+
58
+ \end{itemize}
59
+
60
+
61
+ \begin{itemize}
62
+
63
+ \item Every list item has at least one paragraph of content,
64
+ which may be wrapped, even using a hanging indent.
65
+
66
+ Additional paragraphs or blocks are adjoined by putting
67
+ a list continuation on a line adjacent to both blocks.
68
+
69
+
70
+ \begin{description}
71
+
72
+ \item[list continuation]a plus sign ({\tt +}) on a line by itself
73
+
74
+ \end{description}
75
+
76
+ \item A literal paragraph does not require a list continuation.
77
+
78
+ \begin{verbatim}
79
+ $ gem install asciidoctor
80
+ \end{verbatim}
81
+ \end{itemize}
82
+
83
+
84
+ \begin{itemize}
85
+
86
+ \item checked
87
+
88
+ \item also checked
89
+
90
+ \item not checked
91
+
92
+ \item normal list item
93
+
94
+ \end{itemize}
95
+
96
+