asciidoctor-latex 1.5.0.11.dev → 1.5.0.12.dev
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +10 -0
- data/README.adoc +24 -26
- data/Rakefile +2 -0
- data/doc/Asciidoctor/Block.html +235 -153
- data/doc/Asciidoctor/Converter/Html5Converter.html +3 -3
- data/doc/Asciidoctor/Document.html +2 -2
- data/doc/Asciidoctor/Inline.html +75 -75
- data/doc/Asciidoctor/LaTeX.html +5 -5
- data/doc/Asciidoctor/LaTeX/Chem.html +2 -2
- data/doc/Asciidoctor/LaTeX/ChemInlineMacro.html +2 -2
- data/doc/Asciidoctor/LaTeX/ClickBlock.html +2 -2
- data/doc/Asciidoctor/LaTeX/ClickStyleInsert.html +2 -2
- data/doc/Asciidoctor/LaTeX/Converter.html +19 -19
- data/doc/Asciidoctor/LaTeX/Dollar.html +2 -2
- data/doc/Asciidoctor/LaTeX/EntToUni.html +2 -2
- data/doc/Asciidoctor/LaTeX/EnvironmentBlock.html +2 -2
- data/doc/Asciidoctor/LaTeX/HTMLPostprocessor.html +2 -2
- data/doc/Asciidoctor/LaTeX/Html5ConverterExtensions.html +315 -235
- data/doc/Asciidoctor/LaTeX/InjectHTML.html +2 -2
- data/doc/Asciidoctor/LaTeX/MacroInsert.html +2 -2
- data/doc/Asciidoctor/LaTeX/TeXBlock.html +2 -2
- data/doc/Asciidoctor/LaTeX/TeXPostProcess.html +48 -48
- data/doc/Asciidoctor/LaTeX/TeXPreprocessor.html +2 -2
- data/doc/Asciidoctor/LaTeX/TexPostprocessor.html +2 -2
- data/doc/Asciidoctor/List.html +2 -2
- data/doc/Asciidoctor/Section.html +2 -2
- data/doc/Asciidoctor/Table.html +24 -24
- data/doc/PreambleProcessor.html +2 -2
- data/doc/String.html +2 -2
- data/doc/class_list.html +1 -1
- data/doc/file.LICENSE.html +2 -2
- data/doc/file.README.html +68 -32
- data/doc/index.html +68 -32
- data/doc/method_list.html +91 -73
- data/doc/top-level-namespace.html +2 -2
- data/lib/asciidoctor/latex/converter.rb +3 -1
- data/lib/asciidoctor/latex/version.rb +1 -1
- data/test/examples/asciidoc-html/env.adoc +1 -1
- data/test/html_test.rb +1 -1
- data/test/latex_test.rb +1 -1
- data/try-out/quote.adoc +18 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f1d2505677112b0ffd3fbc854273705eb5d5ffe
|
4
|
+
data.tar.gz: 114ad1a02c25e393835d1ef1c38151f606876537
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f65b4de8dea52bfdee30f8b9f88d75737e58146843992d7b9a49a88e910d10fa9b84f40450e33b0a1bcf4f920aa642cec508f899b1ebe3b64d0d89afd77672e
|
7
|
+
data.tar.gz: def2e887596b4e1f4db3669588a13b6a3277376db339218c8cc64d771c4d12ca4ed20ac6a16e9e61382f7da5cc91cdb4a6915e9b9f14d030393606e78eb78f19
|
data/CHANGELOG.adoc
CHANGED
@@ -22,6 +22,16 @@ for cross-referencing, e.g.,
|
|
22
22
|
`[env.equation#hohoho]`, then it is numbered.
|
23
23
|
////
|
24
24
|
|
25
|
+
|
26
|
+
1.5.0.12.dev:: Fix issue #44 in which the file
|
27
|
+
macros.tex is ignored in the latex dialect
|
28
|
+
when using the html backend.
|
29
|
+
|
30
|
+
|
31
|
+
1.5.0.11.dev:: Enable the syntax
|
32
|
+
`Asciidoctor.convert str, { 'dialect' => 'latex' }`
|
33
|
+
for specifying the dialect in the Ruby API.
|
34
|
+
|
25
35
|
1.5.0.10.dev:: NOTE: Version 1.5.0.10 introduces
|
26
36
|
a new syntax with switches for three 'dialects'
|
27
37
|
of asciidoc: asciidoc itself, 'manuscript',
|
data/README.adoc
CHANGED
@@ -57,28 +57,26 @@ https://rubygems.org/gems/asciidoctor-latex[RubyGems.org]
|
|
57
57
|
Beta alert!
|
58
58
|
|
59
59
|
NOTE: Version 1.5.0.7 is "stable". Version 1.5.0.9 introduces
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
#
|
81
|
-
#
|
60
|
+
|
61
|
+
new syntax with switches for three 'dialects'. See below.
|
62
|
+
|
63
|
+
There are three dialects that you can set with the `:dialect` attribute:
|
64
|
+
|
65
|
+
- `asciidoc`
|
66
|
+
- `asciidoc-manuscript`
|
67
|
+
- `asciidoc-latex`
|
68
|
+
|
69
|
+
See the option flag `-a` to set the dialect from the command line. For example:
|
70
|
+
|
71
|
+
$ asciidoctor-latex -a dialect=manuscript foo.adoc
|
72
|
+
|
73
|
+
Be sure to use XeLaTex for tex'ing.
|
74
|
+
|
75
|
+
To set the dialect with the Ruby API, use for example :
|
76
|
+
|
77
|
+
----
|
78
|
+
Asciidoctor.convert str, { 'dialect' => 'latex' }
|
79
|
+
----
|
82
80
|
|
83
81
|
=== From GitHub
|
84
82
|
|
@@ -92,7 +90,7 @@ If you would like to install a development version from the repository, use:
|
|
92
90
|
|
93
91
|
== Commands
|
94
92
|
|
95
|
-
Asciidoc math files can be rendered
|
93
|
+
Asciidoc math files can be rendered as follows
|
96
94
|
|
97
95
|
Render as HTML::
|
98
96
|
Use `$ asciidoctor-latex -b html foo.adoc` to produce `foo.html`.
|
@@ -105,7 +103,7 @@ to produce `foo.tex`.
|
|
105
103
|
|
106
104
|
=== Macro files
|
107
105
|
|
108
|
-
The contents of a file named `macros.tex` will
|
106
|
+
The contents of a file named `macros.tex` will be
|
109
107
|
read and used by `asciidoctor-latex`
|
110
108
|
if it is in the same directory as the file
|
111
109
|
being rendered. This is the case regardless
|
@@ -114,9 +112,9 @@ of the output format -- HTML or tex.
|
|
114
112
|
|
115
113
|
=== Switches
|
116
114
|
|
117
|
-
|
118
|
-
Use a minimal header for the generated tex file.
|
115
|
+
To generate a tex file with a minial header, do:
|
119
116
|
|
117
|
+
$ asciidoctor-latex -a header=no foo.adoc
|
120
118
|
|
121
119
|
{adlp}'s default form at is `:latexmath`.
|
122
120
|
To use `:stem`, put the text `:stem:`
|
data/Rakefile
CHANGED
@@ -41,12 +41,14 @@ begin
|
|
41
41
|
|
42
42
|
DocTest::GeneratorTask.new(:latex) do |t|
|
43
43
|
t.converter_opts[:backend_name] = :latex
|
44
|
+
t.converter_opts[:dialect] = :latex
|
44
45
|
t.output_suite = DocTest::Latex::ExamplesSuite.new(examples_path: 'test/examples/tex')
|
45
46
|
t.examples_path.unshift 'test/examples/adoc' # extra input examples
|
46
47
|
end
|
47
48
|
|
48
49
|
DocTest::GeneratorTask.new(:html) do |t|
|
49
50
|
t.converter_opts[:backend_name] = :html
|
51
|
+
t.converter_opts[:dialect] = :latex
|
50
52
|
t.output_suite = DocTest::HTML::ExamplesSuite.new(examples_path: 'test/examples/html')
|
51
53
|
t.examples_path = ['test/examples/asciidoc-html'] # input examples
|
52
54
|
end
|
data/doc/Asciidoctor/Block.html
CHANGED
@@ -366,6 +366,32 @@ example problem equation)</p>
|
|
366
366
|
|
367
367
|
<span class="summary_desc"><div class='inline'></div></span>
|
368
368
|
|
369
|
+
</li>
|
370
|
+
|
371
|
+
|
372
|
+
<li class="public ">
|
373
|
+
<span class="summary_signature">
|
374
|
+
|
375
|
+
<a href="#handle_include_latex-instance_method" title="#handle_include_latex (instance method)">- (Object) <strong>handle_include_latex</strong> </a>
|
376
|
+
|
377
|
+
|
378
|
+
|
379
|
+
</span>
|
380
|
+
|
381
|
+
|
382
|
+
|
383
|
+
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
|
388
|
+
|
389
|
+
<span class="summary_desc"><div class='inline'>
|
390
|
+
<p>Example: [env.include_latex] – nput abc.text usepackagedef – Nothing
|
391
|
+
appears in the HTML, bu lines nput abc.text usepackagedef appear in the
|
392
|
+
generated tex file.</p>
|
393
|
+
</div></span>
|
394
|
+
|
369
395
|
</li>
|
370
396
|
|
371
397
|
|
@@ -865,26 +891,6 @@ example problem equation)</p>
|
|
865
891
|
<pre class="lines">
|
866
892
|
|
867
893
|
|
868
|
-
496
|
869
|
-
497
|
870
|
-
498
|
871
|
-
499
|
872
|
-
500
|
873
|
-
501
|
874
|
-
502
|
875
|
-
503
|
876
|
-
504
|
877
|
-
505
|
878
|
-
506
|
879
|
-
507
|
880
|
-
508
|
881
|
-
509
|
882
|
-
510
|
883
|
-
511
|
884
|
-
512
|
885
|
-
513
|
886
|
-
514
|
887
|
-
515
|
888
894
|
516
|
889
895
|
517
|
890
896
|
518
|
@@ -908,10 +914,30 @@ example problem equation)</p>
|
|
908
914
|
536
|
909
915
|
537
|
910
916
|
538
|
911
|
-
539
|
917
|
+
539
|
918
|
+
540
|
919
|
+
541
|
920
|
+
542
|
921
|
+
543
|
922
|
+
544
|
923
|
+
545
|
924
|
+
546
|
925
|
+
547
|
926
|
+
548
|
927
|
+
549
|
928
|
+
550
|
929
|
+
551
|
930
|
+
552
|
931
|
+
553
|
932
|
+
554
|
933
|
+
555
|
934
|
+
556
|
935
|
+
557
|
936
|
+
558
|
937
|
+
559</pre>
|
912
938
|
</td>
|
913
939
|
<td>
|
914
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
940
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 516</span>
|
915
941
|
|
916
942
|
<span class='kw'>def</span> <span class='id identifier rubyid_click_process'>click_process</span>
|
917
943
|
<span class='id identifier rubyid_attr'>attr</span> <span class='op'>=</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_attributes'>attributes</span>
|
@@ -1040,7 +1066,9 @@ example problem equation)</p>
|
|
1040
1066
|
479
|
1041
1067
|
480
|
1042
1068
|
481
|
1043
|
-
482
|
1069
|
+
482
|
1070
|
+
483
|
1071
|
+
484</pre>
|
1044
1072
|
</td>
|
1045
1073
|
<td>
|
1046
1074
|
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 457</span>
|
@@ -1067,6 +1095,8 @@ example problem equation)</p>
|
|
1067
1095
|
<span class='id identifier rubyid_handle_box'>handle_box</span>
|
1068
1096
|
<span class='kw'>when</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>texmacro</span><span class='tstring_end'>'</span></span>
|
1069
1097
|
<span class='id identifier rubyid_handle_texmacro'>handle_texmacro</span>
|
1098
|
+
<span class='kw'>when</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>include_latex</span><span class='tstring_end'>'</span></span>
|
1099
|
+
<span class='id identifier rubyid_handle_include_latex'>handle_include_latex</span>
|
1070
1100
|
<span class='kw'>else</span>
|
1071
1101
|
<span class='id identifier rubyid_handle_plain'>handle_plain</span><span class='lparen'>(</span><span class='id identifier rubyid_env'>env</span><span class='rparen'>)</span>
|
1072
1102
|
<span class='kw'>end</span>
|
@@ -1091,23 +1121,23 @@ example problem equation)</p>
|
|
1091
1121
|
<pre class="lines">
|
1092
1122
|
|
1093
1123
|
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1124
|
+
622
|
1125
|
+
623
|
1126
|
+
624
|
1127
|
+
625
|
1128
|
+
626
|
1129
|
+
627
|
1130
|
+
628
|
1131
|
+
629
|
1132
|
+
630
|
1133
|
+
631
|
1134
|
+
632
|
1135
|
+
633
|
1136
|
+
634
|
1137
|
+
635</pre>
|
1108
1138
|
</td>
|
1109
1139
|
<td>
|
1110
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
1140
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 622</span>
|
1111
1141
|
|
1112
1142
|
<span class='kw'>def</span> <span class='id identifier rubyid_example_process'>example_process</span>
|
1113
1143
|
<span class='id identifier rubyid_id'>id</span> <span class='op'>=</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_attributes'>attributes</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>id</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span>
|
@@ -1143,19 +1173,19 @@ example problem equation)</p>
|
|
1143
1173
|
<pre class="lines">
|
1144
1174
|
|
1145
1175
|
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1176
|
+
638
|
1177
|
+
639
|
1178
|
+
640
|
1179
|
+
641
|
1180
|
+
642
|
1181
|
+
643
|
1182
|
+
644
|
1183
|
+
645
|
1184
|
+
646
|
1185
|
+
647</pre>
|
1156
1186
|
</td>
|
1157
1187
|
<td>
|
1158
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
1188
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 638</span>
|
1159
1189
|
|
1160
1190
|
<span class='kw'>def</span> <span class='id identifier rubyid_floating_title_process'>floating_title_process</span>
|
1161
1191
|
<span class='id identifier rubyid_doctype'>doctype</span> <span class='op'>=</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_document'>document</span><span class='period'>.</span><span class='id identifier rubyid_doctype'>doctype</span>
|
@@ -1187,16 +1217,16 @@ example problem equation)</p>
|
|
1187
1217
|
<pre class="lines">
|
1188
1218
|
|
1189
1219
|
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1220
|
+
508
|
1221
|
+
509
|
1222
|
+
510
|
1223
|
+
511
|
1224
|
+
512
|
1225
|
+
513
|
1226
|
+
514</pre>
|
1197
1227
|
</td>
|
1198
1228
|
<td>
|
1199
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
1229
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 508</span>
|
1200
1230
|
|
1201
1231
|
<span class='kw'>def</span> <span class='id identifier rubyid_handle_box'>handle_box</span>
|
1202
1232
|
<span class='kw'>if</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_title'>title</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='kw'>or</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_title'>title</span> <span class='op'>==</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_end'>'</span></span>
|
@@ -1320,6 +1350,58 @@ example problem equation)</p>
|
|
1320
1350
|
</td>
|
1321
1351
|
</tr>
|
1322
1352
|
</table>
|
1353
|
+
</div>
|
1354
|
+
|
1355
|
+
<div class="method_details ">
|
1356
|
+
<h3 class="signature " id="handle_include_latex-instance_method">
|
1357
|
+
|
1358
|
+
- (<tt>Object</tt>) <strong>handle_include_latex</strong>
|
1359
|
+
|
1360
|
+
|
1361
|
+
|
1362
|
+
|
1363
|
+
|
1364
|
+
</h3><div class="docstring">
|
1365
|
+
<div class="discussion">
|
1366
|
+
|
1367
|
+
<p>Example:</p>
|
1368
|
+
<dl class="rdoc-list label-list"><dt>env.include_latex
|
1369
|
+
<dd>
|
1370
|
+
<p>– nput abc.text usepackagedef – Nothing appears in the HTML, bu lines
|
1371
|
+
nput abc.text usepackagedef appear in the generated tex file.</p>
|
1372
|
+
</dd></dl>
|
1373
|
+
|
1374
|
+
|
1375
|
+
</div>
|
1376
|
+
</div>
|
1377
|
+
<div class="tags">
|
1378
|
+
|
1379
|
+
|
1380
|
+
</div><table class="source_code">
|
1381
|
+
<tr>
|
1382
|
+
<td>
|
1383
|
+
<pre class="lines">
|
1384
|
+
|
1385
|
+
|
1386
|
+
501
|
1387
|
+
502
|
1388
|
+
503
|
1389
|
+
504
|
1390
|
+
505
|
1391
|
+
506</pre>
|
1392
|
+
</td>
|
1393
|
+
<td>
|
1394
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 501</span>
|
1395
|
+
|
1396
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_handle_include_latex'>handle_include_latex</span>
|
1397
|
+
<span class='id identifier rubyid_puts'>puts</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Hi Boss, it's me again!</span><span class='tstring_end'>"</span></span>
|
1398
|
+
<span class='id identifier rubyid_puts'>puts</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_content'>content</span>
|
1399
|
+
<span class='id identifier rubyid_puts'>puts</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>---------------</span><span class='tstring_end'>"</span></span>
|
1400
|
+
<span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_content'>content</span>
|
1401
|
+
<span class='kw'>end</span></pre>
|
1402
|
+
</td>
|
1403
|
+
</tr>
|
1404
|
+
</table>
|
1323
1405
|
</div>
|
1324
1406
|
|
1325
1407
|
<div class="method_details ">
|
@@ -1425,12 +1507,12 @@ example problem equation)</p>
|
|
1425
1507
|
<pre class="lines">
|
1426
1508
|
|
1427
1509
|
|
1428
|
-
|
1429
|
-
|
1430
|
-
|
1510
|
+
486
|
1511
|
+
487
|
1512
|
+
488</pre>
|
1431
1513
|
</td>
|
1432
1514
|
<td>
|
1433
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
1515
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 486</span>
|
1434
1516
|
|
1435
1517
|
<span class='kw'>def</span> <span class='id identifier rubyid_handle_texmacro'>handle_texmacro</span>
|
1436
1518
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>%% User tex macros:\n</span><span class='embexpr_beg'>#{</span><span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_content'>content</span><span class='embexpr_end'>}</span><span class='tstring_content'>\n%% end of user macros\n</span><span class='tstring_end'>"</span></span>
|
@@ -1455,26 +1537,6 @@ example problem equation)</p>
|
|
1455
1537
|
<pre class="lines">
|
1456
1538
|
|
1457
1539
|
|
1458
|
-
629
|
1459
|
-
630
|
1460
|
-
631
|
1461
|
-
632
|
1462
|
-
633
|
1463
|
-
634
|
1464
|
-
635
|
1465
|
-
636
|
1466
|
-
637
|
1467
|
-
638
|
1468
|
-
639
|
1469
|
-
640
|
1470
|
-
641
|
1471
|
-
642
|
1472
|
-
643
|
1473
|
-
644
|
1474
|
-
645
|
1475
|
-
646
|
1476
|
-
647
|
1477
|
-
648
|
1478
1540
|
649
|
1479
1541
|
650
|
1480
1542
|
651
|
@@ -1506,10 +1568,30 @@ example problem equation)</p>
|
|
1506
1568
|
677
|
1507
1569
|
678
|
1508
1570
|
679
|
1509
|
-
680
|
1571
|
+
680
|
1572
|
+
681
|
1573
|
+
682
|
1574
|
+
683
|
1575
|
+
684
|
1576
|
+
685
|
1577
|
+
686
|
1578
|
+
687
|
1579
|
+
688
|
1580
|
+
689
|
1581
|
+
690
|
1582
|
+
691
|
1583
|
+
692
|
1584
|
+
693
|
1585
|
+
694
|
1586
|
+
695
|
1587
|
+
696
|
1588
|
+
697
|
1589
|
+
698
|
1590
|
+
699
|
1591
|
+
700</pre>
|
1510
1592
|
</td>
|
1511
1593
|
<td>
|
1512
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
1594
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 649</span>
|
1513
1595
|
|
1514
1596
|
<span class='kw'>def</span> <span class='id identifier rubyid_image_process'>image_process</span>
|
1515
1597
|
<span class='kw'>if</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_attributes'>attributes</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>width</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span>
|
@@ -1625,12 +1707,12 @@ example problem equation)</p>
|
|
1625
1707
|
<pre class="lines">
|
1626
1708
|
|
1627
1709
|
|
1628
|
-
|
1629
|
-
|
1630
|
-
|
1710
|
+
618
|
1711
|
+
619
|
1712
|
+
620</pre>
|
1631
1713
|
</td>
|
1632
1714
|
<td>
|
1633
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
1715
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 618</span>
|
1634
1716
|
|
1635
1717
|
<span class='kw'>def</span> <span class='id identifier rubyid_listing_process'>listing_process</span>
|
1636
1718
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>\\begin\{verbatim\}\n</span><span class='embexpr_beg'>#{</span><span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_content'>content</span><span class='embexpr_end'>}</span><span class='tstring_content'>\n\\end\{verbatim\}\n</span><span class='tstring_end'>"</span></span>
|
@@ -1733,30 +1815,30 @@ essentally no knoweldge of either other than their form.</p>
|
|
1733
1815
|
<pre class="lines">
|
1734
1816
|
|
1735
1817
|
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
|
1748
|
-
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1753
|
-
|
1754
|
-
|
1755
|
-
|
1756
|
-
|
1818
|
+
596
|
1819
|
+
597
|
1820
|
+
598
|
1821
|
+
599
|
1822
|
+
600
|
1823
|
+
601
|
1824
|
+
602
|
1825
|
+
603
|
1826
|
+
604
|
1827
|
+
605
|
1828
|
+
606
|
1829
|
+
607
|
1830
|
+
608
|
1831
|
+
609
|
1832
|
+
610
|
1833
|
+
611
|
1834
|
+
612
|
1835
|
+
613
|
1836
|
+
614
|
1837
|
+
615
|
1838
|
+
616</pre>
|
1757
1839
|
</td>
|
1758
1840
|
<td>
|
1759
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
1841
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 596</span>
|
1760
1842
|
|
1761
1843
|
<span class='kw'>def</span> <span class='id identifier rubyid_open_process'>open_process</span>
|
1762
1844
|
|
@@ -1951,13 +2033,13 @@ essentally no knoweldge of either other than their form.</p>
|
|
1951
2033
|
<pre class="lines">
|
1952
2034
|
|
1953
2035
|
|
1954
|
-
|
1955
|
-
|
1956
|
-
|
1957
|
-
|
2036
|
+
702
|
2037
|
+
703
|
2038
|
+
704
|
2039
|
+
705</pre>
|
1958
2040
|
</td>
|
1959
2041
|
<td>
|
1960
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
2042
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 702</span>
|
1961
2043
|
|
1962
2044
|
<span class='kw'>def</span> <span class='id identifier rubyid_preamble_process'>preamble_process</span>
|
1963
2045
|
<span class='comment'># "\\begin\{preamble\}\n%% HO HO HO!\n#{self.content}\n\\end\{preamble\}\n"
|
@@ -2033,19 +2115,19 @@ essentally no knoweldge of either other than their form.</p>
|
|
2033
2115
|
<pre class="lines">
|
2034
2116
|
|
2035
2117
|
|
2036
|
-
|
2037
|
-
|
2038
|
-
|
2039
|
-
|
2040
|
-
|
2041
|
-
|
2042
|
-
|
2043
|
-
|
2044
|
-
|
2045
|
-
|
2118
|
+
565
|
2119
|
+
566
|
2120
|
+
567
|
2121
|
+
568
|
2122
|
+
569
|
2123
|
+
570
|
2124
|
+
571
|
2125
|
+
572
|
2126
|
+
573
|
2127
|
+
574</pre>
|
2046
2128
|
</td>
|
2047
2129
|
<td>
|
2048
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
2130
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 565</span>
|
2049
2131
|
|
2050
2132
|
<span class='kw'>def</span> <span class='id identifier rubyid_report'>report</span>
|
2051
2133
|
<span class='comment'># Report on this node
|
@@ -2077,25 +2159,25 @@ essentally no knoweldge of either other than their form.</p>
|
|
2077
2159
|
<pre class="lines">
|
2078
2160
|
|
2079
2161
|
|
2080
|
-
|
2081
|
-
|
2082
|
-
|
2083
|
-
|
2084
|
-
|
2085
|
-
|
2086
|
-
|
2087
|
-
|
2088
|
-
|
2089
|
-
|
2090
|
-
|
2091
|
-
|
2092
|
-
|
2093
|
-
|
2094
|
-
|
2095
|
-
|
2162
|
+
708
|
2163
|
+
709
|
2164
|
+
710
|
2165
|
+
711
|
2166
|
+
712
|
2167
|
+
713
|
2168
|
+
714
|
2169
|
+
715
|
2170
|
+
716
|
2171
|
+
717
|
2172
|
+
718
|
2173
|
+
719
|
2174
|
+
720
|
2175
|
+
721
|
2176
|
+
722
|
2177
|
+
723</pre>
|
2096
2178
|
</td>
|
2097
2179
|
<td>
|
2098
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
2180
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 708</span>
|
2099
2181
|
|
2100
2182
|
<span class='kw'>def</span> <span class='id identifier rubyid_sidebar_process'>sidebar_process</span>
|
2101
2183
|
<span class='id identifier rubyid_title'>title</span> <span class='op'>=</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_title'>title</span>
|
@@ -2287,12 +2369,12 @@ essentally no knoweldge of either other than their form.</p>
|
|
2287
2369
|
<pre class="lines">
|
2288
2370
|
|
2289
2371
|
|
2290
|
-
|
2291
|
-
|
2292
|
-
|
2372
|
+
561
|
2373
|
+
562
|
2374
|
+
563</pre>
|
2293
2375
|
</td>
|
2294
2376
|
<td>
|
2295
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
2377
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 561</span>
|
2296
2378
|
|
2297
2379
|
<span class='kw'>def</span> <span class='id identifier rubyid_toc_process'>toc_process</span>
|
2298
2380
|
<span class='comment'># warn "Please implement me! (toc_process)".red if $VERBOSE
|
@@ -2317,13 +2399,13 @@ essentally no knoweldge of either other than their form.</p>
|
|
2317
2399
|
<pre class="lines">
|
2318
2400
|
|
2319
2401
|
|
2320
|
-
|
2321
|
-
|
2322
|
-
|
2323
|
-
|
2402
|
+
725
|
2403
|
+
726
|
2404
|
+
727
|
2405
|
+
728</pre>
|
2324
2406
|
</td>
|
2325
2407
|
<td>
|
2326
|
-
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line
|
2408
|
+
<pre class="code"><span class="info file"># File 'lib/asciidoctor/latex/node_processors.rb', line 725</span>
|
2327
2409
|
|
2328
2410
|
<span class='kw'>def</span> <span class='id identifier rubyid_verse_process'>verse_process</span>
|
2329
2411
|
<span class='comment'># $tex.env 'alltt', self.content
|
@@ -2339,9 +2421,9 @@ essentally no knoweldge of either other than their form.</p>
|
|
2339
2421
|
</div>
|
2340
2422
|
|
2341
2423
|
<div id="footer">
|
2342
|
-
Generated on Tue
|
2424
|
+
Generated on Tue Jun 7 05:32:26 2016 by
|
2343
2425
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
2344
|
-
0.8.7.6 (ruby-2.3
|
2426
|
+
0.8.7.6 (ruby-2.2.3).
|
2345
2427
|
</div>
|
2346
2428
|
|
2347
2429
|
</body>
|