docgenerator 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/examples/creole_example_tabular.rb +95 -0
- data/examples/docgenerator_example.rb +5 -5
- data/lib/creole/creole2doc.rb +28 -18
- data/lib/creole/creole_inclusions.rb +4 -4
- data/lib/creole/creole_placeholder.rb +4 -1
- data/lib/creole/creole_tabular.rb +173 -155
- data/lib/creole/plugins/rail.rb +118 -119
- data/lib/creole/plugins/struktex.rb +35 -35
- data/lib/creole/plugins/todonotes.rb +8 -1
- data/lib/docgenerator/attribute.rb +160 -160
- data/lib/docgenerator/characters.rb +343 -311
- data/lib/docgenerator/css.rb +167 -167
- data/lib/docgenerator/document.rb +525 -511
- data/lib/docgenerator/element.rb +316 -316
- data/lib/docgenerator/element_meta.rb +114 -114
- data/lib/docgenerator/elements.rb +19 -9
- data/lib/docgenerator/environments.rb +3 -1
- data/lib/docgenerator/lists.rb +177 -174
- data/lib/docgenerator/packages/hyperref.rb +74 -70
- data/lib/docgenerator/packages/multicol.rb +33 -0
- data/lib/docgenerator/packages/scrlettr2.rb +152 -151
- data/lib/docgenerator/packages/todonotes.rb +1 -1
- data/lib/docgenerator/tabular.rb +463 -400
- data/lib/docgenerator/templates/docgenerator_template.rb +94 -84
- data/lib/docgenerator/templates/docgenerator_template.yaml +75 -15
- data/lib/docgenerator.rb +1 -1
- data/lib/wiki2doc/wiki2docgenerator.rb +1 -1
- data/meta_test_and_doc/build__meta.rb +125 -0
- data/meta_test_and_doc/build_doc.rb +333 -0
- data/meta_test_and_doc/build_test.rb +251 -0
- data/meta_test_and_doc/manpages/attachfile.rb +389 -0
- data/meta_test_and_doc/manpages/caption.rb +133 -0
- data/meta_test_and_doc/manpages/characters.rb +3738 -0
- data/meta_test_and_doc/manpages/elements.rb +6851 -0
- data/meta_test_and_doc/manpages/environments.rb +985 -0
- data/meta_test_and_doc/manpages/footnote.rb +439 -0
- data/meta_test_and_doc/manpages/hyperref.rb +605 -0
- data/meta_test_and_doc/manpages/listings.rb +988 -0
- data/meta_test_and_doc/manpages/lists.rb +1463 -0
- data/meta_test_and_doc/manpages/others.rb +129 -0
- data/meta_test_and_doc/manpages/packages.rb +13 -0
- data/meta_test_and_doc/manpages/pdfpages.rb +108 -0
- data/meta_test_and_doc/manpages/readme.rdoc +9 -0
- data/meta_test_and_doc/manpages/scrlettr2.rb +362 -0
- data/meta_test_and_doc/manpages/scrpage2.rb +2028 -0
- data/meta_test_and_doc/manpages/sectioning.rb +2467 -0
- data/meta_test_and_doc/manpages/tables.rb +2088 -0
- data/meta_test_and_doc/manpages/todonotes.rb +235 -0
- data/meta_test_and_doc/manpages/wiki2docgenerator.rb +64 -0
- data/{readme.rd → readme.rdoc} +18 -1
- data/unittest/expected/test_tabular.creole +33 -0
- data/unittest/expected_creole/test_creole_creole1.0test.html +3 -3
- data/unittest/expected_creole/test_creole_creole1.0test.latex +3 -3
- data/unittest/expected_creole/test_creole_creole1.0test.text +3 -3
- data/unittest/expected_creole/test_creole_inline_apostroph.html +6 -0
- data/unittest/expected_creole/test_creole_inline_apostroph.latex +8 -0
- data/unittest/expected_creole/test_creole_inline_apostroph.text +4 -0
- data/unittest/expected_creole/test_creole_input.normsource +12 -12
- data/unittest/expected_creole/test_creole_input.normsource_1.8 +23 -0
- data/unittest/expected_creole/test_creole_links_external_implicit.html +2 -2
- data/unittest/expected_creole/test_creole_links_external_implicit.latex +2 -2
- data/unittest/expected_creole/test_creole_links_external_implicit.text +2 -2
- data/unittest/expected_creole/test_creole_links_implicit_end.html +1 -1
- data/unittest/expected_creole/test_creole_links_implicit_end.latex +1 -1
- data/unittest/expected_creole/test_creole_list_ul.normsource +42 -42
- data/unittest/expected_creole/test_creole_list_ul.normsource_1.8 +83 -0
- data/unittest/expected_creole/test_creole_paragraphs.normsource +15 -15
- data/unittest/expected_creole/test_creole_paragraphs.normsource_1.8 +27 -0
- data/unittest/expected_creole/test_creole_tabular.creole +22 -0
- data/unittest/expected_creole/test_creole_tabular_creole.creole +19 -0
- data/unittest/expected_creole/test_creole_tabular_css.creole +24 -0
- data/unittest/expected_creole/test_creole_tabular_multicols.creole +16 -0
- data/unittest/expected_creole/test_creole_tabular_multicols.html +14 -0
- data/unittest/expected_creole/test_creole_tabular_multicols.latex +16 -0
- data/unittest/expected_creole/test_creole_tabular_with_cell_option.creole +21 -0
- data/unittest/expected_creole/test_creole_toc_level_text.html +2 -2
- data/unittest/expected_creole/test_creole_toc_level_text.latex +2 -2
- data/unittest/expected_packages/test_multicol_3.tex +2 -0
- data/unittest/expected_packages/test_multicol_3_titleline.tex +2 -0
- data/unittest/expected_templates/test_article.tex +23 -0
- data/unittest/expected_templates/test_article_utf8.tex +34 -0
- data/unittest/expected_templates/test_context.miv +18 -0
- data/unittest/expected_templates/test_creole.creole +8 -0
- data/unittest/expected_templates/test_html.html +12 -0
- data/unittest/expected_templates/test_html401_strict.html +14 -0
- data/unittest/expected_templates/test_html401_trans.html +14 -0
- data/unittest/expected_templates/test_html_utf8.html +14 -0
- data/unittest/expected_templates/test_include.tex +17 -0
- data/unittest/expected_templates/test_include_utf8.tex +17 -0
- data/unittest/expected_templates/test_text.txt +6 -0
- data/unittest/expected_templates/test_wiki.wiki +6 -0
- data/unittest/expected_templates/test_xhtml_strict.html +14 -0
- data/unittest/expected_templates/test_xhtml_trans.html +14 -0
- data/unittest/unittest_creole.rb +27 -6
- data/unittest/unittest_creole_placeholders.rb +1 -123
- data/unittest/unittest_creole_tabular.rb +174 -0
- data/unittest/unittest_docgenerator.rb +4 -3
- data/unittest/unittest_docgenerator_characters.rb +4769 -615
- data/unittest/unittest_packages_multicol.rb +84 -0
- data/unittest/unittest_rubycode4doc.rb +0 -1
- data/unittest/unittest_templates.rb +64 -0
- metadata +163 -77
- data/build_test_and_doc.rb +0 -505
- data/manpage_elements.rb +0 -10411
|
@@ -0,0 +1,2028 @@
|
|
|
1
|
+
#encoding utf-8
|
|
2
|
+
=begin rdoc
|
|
3
|
+
Generated manpages for elements.
|
|
4
|
+
|
|
5
|
+
This document does not contain the implementation or code documentation.
|
|
6
|
+
|
|
7
|
+
This document is the source for a manpage for usage of Docgenerator elements.
|
|
8
|
+
|
|
9
|
+
The following Element are documented in this document:
|
|
10
|
+
|
|
11
|
+
* Docgenerator::Packages::Scrpage2::Clearscrheadings
|
|
12
|
+
* Docgenerator::Packages::Scrpage2::Clearscrheadfoot
|
|
13
|
+
* Docgenerator::Packages::Scrpage2::Clearscrplain
|
|
14
|
+
* Docgenerator::Packages::Scrpage2::Pagestyle
|
|
15
|
+
* Docgenerator::Packages::Scrpage2::Manualmark
|
|
16
|
+
* Docgenerator::Packages::Scrpage2::Automark
|
|
17
|
+
* Docgenerator::Packages::Scrpage2::Lehead
|
|
18
|
+
* Docgenerator::Packages::Scrpage2::Cehead
|
|
19
|
+
* Docgenerator::Packages::Scrpage2::Rehead
|
|
20
|
+
* Docgenerator::Packages::Scrpage2::Lefoot
|
|
21
|
+
* Docgenerator::Packages::Scrpage2::Cefoot
|
|
22
|
+
* Docgenerator::Packages::Scrpage2::Refoot
|
|
23
|
+
* Docgenerator::Packages::Scrpage2::Lohead
|
|
24
|
+
* Docgenerator::Packages::Scrpage2::Cohead
|
|
25
|
+
* Docgenerator::Packages::Scrpage2::Rohead
|
|
26
|
+
* Docgenerator::Packages::Scrpage2::Lofoot
|
|
27
|
+
* Docgenerator::Packages::Scrpage2::Cofoot
|
|
28
|
+
* Docgenerator::Packages::Scrpage2::Rofoot
|
|
29
|
+
* Docgenerator::Packages::Scrpage2::Ihead
|
|
30
|
+
* Docgenerator::Packages::Scrpage2::Chead
|
|
31
|
+
* Docgenerator::Packages::Scrpage2::Ohead
|
|
32
|
+
* Docgenerator::Packages::Scrpage2::Ifoot
|
|
33
|
+
* Docgenerator::Packages::Scrpage2::Cfoot
|
|
34
|
+
* Docgenerator::Packages::Scrpage2::Ofoot
|
|
35
|
+
=end
|
|
36
|
+
|
|
37
|
+
#
|
|
38
|
+
module Docgenerator
|
|
39
|
+
module Packages
|
|
40
|
+
module Scrpage2
|
|
41
|
+
=begin rdoc
|
|
42
|
+
=Docgenerator::Packages::Scrpage2::Clearscrheadings
|
|
43
|
+
|
|
44
|
+
Docgenerator::Packages::Scrpage2::Clearscrheadings does not contain attributes
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
Docgenerator::Packages::Scrpage2::Clearscrheadings allows no content.
|
|
48
|
+
|
|
49
|
+
==Generate an object
|
|
50
|
+
test = Docgenerator::Packages::Scrpage2::Clearscrheadings.new( )
|
|
51
|
+
|
|
52
|
+
Alternative generation
|
|
53
|
+
test = element(:clearscrheadings)
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
==Outputs
|
|
57
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadings#to_latex
|
|
58
|
+
\clearscrheadings
|
|
59
|
+
|
|
60
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Clearscrheadings#.to_latex
|
|
61
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
62
|
+
|
|
63
|
+
Default:
|
|
64
|
+
<<START>>\clearscrheadings <<END>>
|
|
65
|
+
|
|
66
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrheadings#cr:
|
|
67
|
+
|
|
68
|
+
<<START>>\clearscrheadings
|
|
69
|
+
<<END>>
|
|
70
|
+
|
|
71
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrheadings#cR:
|
|
72
|
+
|
|
73
|
+
<<START>>\clearscrheadings
|
|
74
|
+
<<END>>
|
|
75
|
+
|
|
76
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrheadings#Cr:
|
|
77
|
+
|
|
78
|
+
<<START>>
|
|
79
|
+
\clearscrheadings
|
|
80
|
+
<<END>>
|
|
81
|
+
|
|
82
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrheadings#CR:
|
|
83
|
+
|
|
84
|
+
<<START>>
|
|
85
|
+
\clearscrheadings
|
|
86
|
+
<<END>>
|
|
87
|
+
|
|
88
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadings#to_html
|
|
89
|
+
<span />
|
|
90
|
+
|
|
91
|
+
* No output routine defined for html - use a dummy
|
|
92
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadings#to_context
|
|
93
|
+
\clearscrheadings{}
|
|
94
|
+
|
|
95
|
+
* No output routine defined for context - use a dummy
|
|
96
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadings#to_text
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
* No output routine defined for text - use a dummy
|
|
100
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadings#to_wiki
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
* No output routine defined for wiki - use a dummy
|
|
105
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadings#to_creole
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
* No output routine defined for creole - use a dummy
|
|
110
|
+
=end
|
|
111
|
+
class Clearscrheadings << Docgenerator::Element
|
|
112
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
113
|
+
end #class Clearscrheadings
|
|
114
|
+
end #module Scrpage2
|
|
115
|
+
end #module Packages
|
|
116
|
+
end #module Docgenerator
|
|
117
|
+
module Docgenerator
|
|
118
|
+
module Packages
|
|
119
|
+
module Scrpage2
|
|
120
|
+
=begin rdoc
|
|
121
|
+
=Docgenerator::Packages::Scrpage2::Clearscrheadfoot
|
|
122
|
+
|
|
123
|
+
Docgenerator::Packages::Scrpage2::Clearscrheadfoot does not contain attributes
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
Docgenerator::Packages::Scrpage2::Clearscrheadfoot allows no content.
|
|
127
|
+
|
|
128
|
+
==Generate an object
|
|
129
|
+
test = Docgenerator::Packages::Scrpage2::Clearscrheadfoot.new( )
|
|
130
|
+
|
|
131
|
+
Alternative generation
|
|
132
|
+
test = element(:clearscrheadfoot)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
==Outputs
|
|
136
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadfoot#to_latex
|
|
137
|
+
\clearscrheadfoot
|
|
138
|
+
|
|
139
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Clearscrheadfoot#.to_latex
|
|
140
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
141
|
+
|
|
142
|
+
Default:
|
|
143
|
+
<<START>>\clearscrheadfoot <<END>>
|
|
144
|
+
|
|
145
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrheadfoot#cr:
|
|
146
|
+
|
|
147
|
+
<<START>>\clearscrheadfoot
|
|
148
|
+
<<END>>
|
|
149
|
+
|
|
150
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrheadfoot#cR:
|
|
151
|
+
|
|
152
|
+
<<START>>\clearscrheadfoot
|
|
153
|
+
<<END>>
|
|
154
|
+
|
|
155
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrheadfoot#Cr:
|
|
156
|
+
|
|
157
|
+
<<START>>
|
|
158
|
+
\clearscrheadfoot
|
|
159
|
+
<<END>>
|
|
160
|
+
|
|
161
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrheadfoot#CR:
|
|
162
|
+
|
|
163
|
+
<<START>>
|
|
164
|
+
\clearscrheadfoot
|
|
165
|
+
<<END>>
|
|
166
|
+
|
|
167
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadfoot#to_html
|
|
168
|
+
<span />
|
|
169
|
+
|
|
170
|
+
* No output routine defined for html - use a dummy
|
|
171
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadfoot#to_context
|
|
172
|
+
\clearscrheadfoot{}
|
|
173
|
+
|
|
174
|
+
* No output routine defined for context - use a dummy
|
|
175
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadfoot#to_text
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
* No output routine defined for text - use a dummy
|
|
179
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadfoot#to_wiki
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
* No output routine defined for wiki - use a dummy
|
|
184
|
+
===Docgenerator::Packages::Scrpage2::Clearscrheadfoot#to_creole
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
* No output routine defined for creole - use a dummy
|
|
189
|
+
=end
|
|
190
|
+
class Clearscrheadfoot << Docgenerator::Element
|
|
191
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
192
|
+
end #class Clearscrheadfoot
|
|
193
|
+
end #module Scrpage2
|
|
194
|
+
end #module Packages
|
|
195
|
+
end #module Docgenerator
|
|
196
|
+
module Docgenerator
|
|
197
|
+
module Packages
|
|
198
|
+
module Scrpage2
|
|
199
|
+
=begin rdoc
|
|
200
|
+
=Docgenerator::Packages::Scrpage2::Clearscrplain
|
|
201
|
+
|
|
202
|
+
Docgenerator::Packages::Scrpage2::Clearscrplain does not contain attributes
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
Docgenerator::Packages::Scrpage2::Clearscrplain allows no content.
|
|
206
|
+
|
|
207
|
+
==Generate an object
|
|
208
|
+
test = Docgenerator::Packages::Scrpage2::Clearscrplain.new( )
|
|
209
|
+
|
|
210
|
+
Alternative generation
|
|
211
|
+
test = element(:clearscrplain)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
==Outputs
|
|
215
|
+
===Docgenerator::Packages::Scrpage2::Clearscrplain#to_latex
|
|
216
|
+
\clearscrplain
|
|
217
|
+
|
|
218
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Clearscrplain#.to_latex
|
|
219
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
220
|
+
|
|
221
|
+
Default:
|
|
222
|
+
<<START>>\clearscrplain <<END>>
|
|
223
|
+
|
|
224
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrplain#cr:
|
|
225
|
+
|
|
226
|
+
<<START>>\clearscrplain
|
|
227
|
+
<<END>>
|
|
228
|
+
|
|
229
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrplain#cR:
|
|
230
|
+
|
|
231
|
+
<<START>>\clearscrplain
|
|
232
|
+
<<END>>
|
|
233
|
+
|
|
234
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrplain#Cr:
|
|
235
|
+
|
|
236
|
+
<<START>>
|
|
237
|
+
\clearscrplain
|
|
238
|
+
<<END>>
|
|
239
|
+
|
|
240
|
+
* Result after Docgenerator::Packages::Scrpage2::Clearscrplain#CR:
|
|
241
|
+
|
|
242
|
+
<<START>>
|
|
243
|
+
\clearscrplain
|
|
244
|
+
<<END>>
|
|
245
|
+
|
|
246
|
+
===Docgenerator::Packages::Scrpage2::Clearscrplain#to_html
|
|
247
|
+
<span />
|
|
248
|
+
|
|
249
|
+
* No output routine defined for html - use a dummy
|
|
250
|
+
===Docgenerator::Packages::Scrpage2::Clearscrplain#to_context
|
|
251
|
+
\clearscrplain{}
|
|
252
|
+
|
|
253
|
+
* No output routine defined for context - use a dummy
|
|
254
|
+
===Docgenerator::Packages::Scrpage2::Clearscrplain#to_text
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
* No output routine defined for text - use a dummy
|
|
258
|
+
===Docgenerator::Packages::Scrpage2::Clearscrplain#to_wiki
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
* No output routine defined for wiki - use a dummy
|
|
263
|
+
===Docgenerator::Packages::Scrpage2::Clearscrplain#to_creole
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
* No output routine defined for creole - use a dummy
|
|
268
|
+
=end
|
|
269
|
+
class Clearscrplain << Docgenerator::Element
|
|
270
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
271
|
+
end #class Clearscrplain
|
|
272
|
+
end #module Scrpage2
|
|
273
|
+
end #module Packages
|
|
274
|
+
end #module Docgenerator
|
|
275
|
+
module Docgenerator
|
|
276
|
+
module Packages
|
|
277
|
+
module Scrpage2
|
|
278
|
+
=begin rdoc
|
|
279
|
+
=Docgenerator::Packages::Scrpage2::Pagestyle
|
|
280
|
+
|
|
281
|
+
Docgenerator::Packages::Scrpage2::Pagestyle does not contain attributes
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
Docgenerator::Packages::Scrpage2::Pagestyle can contain content.
|
|
285
|
+
|
|
286
|
+
==Generate an object
|
|
287
|
+
test = Docgenerator::Packages::Scrpage2::Pagestyle.new( {}, 'content')
|
|
288
|
+
|
|
289
|
+
Alternative generation
|
|
290
|
+
test = element(:pagestyle, {}, 'content' )
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
==Outputs
|
|
294
|
+
===Docgenerator::Packages::Scrpage2::Pagestyle#to_latex
|
|
295
|
+
\pagestyle{content}
|
|
296
|
+
|
|
297
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Pagestyle#.to_latex
|
|
298
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
299
|
+
|
|
300
|
+
Default:
|
|
301
|
+
<<START>>\pagestyle{content}<<END>>
|
|
302
|
+
|
|
303
|
+
* Result after Docgenerator::Packages::Scrpage2::Pagestyle#cr:
|
|
304
|
+
|
|
305
|
+
<<START>>\pagestyle{content}
|
|
306
|
+
<<END>>
|
|
307
|
+
|
|
308
|
+
* Result after Docgenerator::Packages::Scrpage2::Pagestyle#cR:
|
|
309
|
+
|
|
310
|
+
<<START>>\pagestyle{content}
|
|
311
|
+
<<END>>
|
|
312
|
+
|
|
313
|
+
* Result after Docgenerator::Packages::Scrpage2::Pagestyle#Cr:
|
|
314
|
+
|
|
315
|
+
<<START>>
|
|
316
|
+
\pagestyle{content}
|
|
317
|
+
<<END>>
|
|
318
|
+
|
|
319
|
+
* Result after Docgenerator::Packages::Scrpage2::Pagestyle#CR:
|
|
320
|
+
|
|
321
|
+
<<START>>
|
|
322
|
+
\pagestyle{content}
|
|
323
|
+
<<END>>
|
|
324
|
+
|
|
325
|
+
===Docgenerator::Packages::Scrpage2::Pagestyle#to_html
|
|
326
|
+
<span >content</span>
|
|
327
|
+
|
|
328
|
+
* No output routine defined for html - use a dummy
|
|
329
|
+
===Docgenerator::Packages::Scrpage2::Pagestyle#to_context
|
|
330
|
+
\pagestyle{content}
|
|
331
|
+
|
|
332
|
+
* No output routine defined for context - use a dummy
|
|
333
|
+
===Docgenerator::Packages::Scrpage2::Pagestyle#to_text
|
|
334
|
+
content
|
|
335
|
+
|
|
336
|
+
* No output routine defined for text - use a dummy
|
|
337
|
+
===Docgenerator::Packages::Scrpage2::Pagestyle#to_wiki
|
|
338
|
+
content
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
* No output routine defined for wiki - use a dummy
|
|
342
|
+
===Docgenerator::Packages::Scrpage2::Pagestyle#to_creole
|
|
343
|
+
content
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
* No output routine defined for creole - use a dummy
|
|
347
|
+
=end
|
|
348
|
+
class Pagestyle << Docgenerator::Element
|
|
349
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
350
|
+
end #class Pagestyle
|
|
351
|
+
end #module Scrpage2
|
|
352
|
+
end #module Packages
|
|
353
|
+
end #module Docgenerator
|
|
354
|
+
module Docgenerator
|
|
355
|
+
module Packages
|
|
356
|
+
module Scrpage2
|
|
357
|
+
=begin rdoc
|
|
358
|
+
=Docgenerator::Packages::Scrpage2::Manualmark
|
|
359
|
+
|
|
360
|
+
Docgenerator::Packages::Scrpage2::Manualmark does not contain attributes
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Docgenerator::Packages::Scrpage2::Manualmark allows no content.
|
|
364
|
+
|
|
365
|
+
==Generate an object
|
|
366
|
+
test = Docgenerator::Packages::Scrpage2::Manualmark.new( )
|
|
367
|
+
|
|
368
|
+
Alternative generation
|
|
369
|
+
test = element(:manualmark)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
==Outputs
|
|
373
|
+
===Docgenerator::Packages::Scrpage2::Manualmark#to_latex
|
|
374
|
+
\manualmark
|
|
375
|
+
|
|
376
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Manualmark#.to_latex
|
|
377
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
378
|
+
|
|
379
|
+
Default:
|
|
380
|
+
<<START>>\manualmark <<END>>
|
|
381
|
+
|
|
382
|
+
* Result after Docgenerator::Packages::Scrpage2::Manualmark#cr:
|
|
383
|
+
|
|
384
|
+
<<START>>\manualmark
|
|
385
|
+
<<END>>
|
|
386
|
+
|
|
387
|
+
* Result after Docgenerator::Packages::Scrpage2::Manualmark#cR:
|
|
388
|
+
|
|
389
|
+
<<START>>\manualmark
|
|
390
|
+
<<END>>
|
|
391
|
+
|
|
392
|
+
* Result after Docgenerator::Packages::Scrpage2::Manualmark#Cr:
|
|
393
|
+
|
|
394
|
+
<<START>>
|
|
395
|
+
\manualmark
|
|
396
|
+
<<END>>
|
|
397
|
+
|
|
398
|
+
* Result after Docgenerator::Packages::Scrpage2::Manualmark#CR:
|
|
399
|
+
|
|
400
|
+
<<START>>
|
|
401
|
+
\manualmark
|
|
402
|
+
<<END>>
|
|
403
|
+
|
|
404
|
+
===Docgenerator::Packages::Scrpage2::Manualmark#to_html
|
|
405
|
+
<span />
|
|
406
|
+
|
|
407
|
+
* No output routine defined for html - use a dummy
|
|
408
|
+
===Docgenerator::Packages::Scrpage2::Manualmark#to_context
|
|
409
|
+
\manualmark{}
|
|
410
|
+
|
|
411
|
+
* No output routine defined for context - use a dummy
|
|
412
|
+
===Docgenerator::Packages::Scrpage2::Manualmark#to_text
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
* No output routine defined for text - use a dummy
|
|
416
|
+
===Docgenerator::Packages::Scrpage2::Manualmark#to_wiki
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
* No output routine defined for wiki - use a dummy
|
|
421
|
+
===Docgenerator::Packages::Scrpage2::Manualmark#to_creole
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
* No output routine defined for creole - use a dummy
|
|
426
|
+
=end
|
|
427
|
+
class Manualmark << Docgenerator::Element
|
|
428
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
429
|
+
end #class Manualmark
|
|
430
|
+
end #module Scrpage2
|
|
431
|
+
end #module Packages
|
|
432
|
+
end #module Docgenerator
|
|
433
|
+
module Docgenerator
|
|
434
|
+
module Packages
|
|
435
|
+
module Scrpage2
|
|
436
|
+
=begin rdoc
|
|
437
|
+
=Docgenerator::Packages::Scrpage2::Automark
|
|
438
|
+
|
|
439
|
+
==Attributes
|
|
440
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
441
|
+
====================================================================================================
|
|
442
|
+
rightmark : - - X - - - - -
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
Docgenerator::Packages::Scrpage2::Automark can contain content.
|
|
446
|
+
|
|
447
|
+
==Generate an object
|
|
448
|
+
test = Docgenerator::Packages::Scrpage2::Automark.new( {
|
|
449
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
450
|
+
}, 'content')
|
|
451
|
+
|
|
452
|
+
Alternative generation
|
|
453
|
+
test = element(:automark, {...Attributes...}, 'content' )
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
==Outputs
|
|
457
|
+
===Docgenerator::Packages::Scrpage2::Automark#to_latex
|
|
458
|
+
\automark{content}
|
|
459
|
+
|
|
460
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Automark#.to_latex
|
|
461
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
462
|
+
|
|
463
|
+
Default:
|
|
464
|
+
<<START>>\automark{content}<<END>>
|
|
465
|
+
|
|
466
|
+
* Result after Docgenerator::Packages::Scrpage2::Automark#cr:
|
|
467
|
+
|
|
468
|
+
<<START>>\automark{content}
|
|
469
|
+
<<END>>
|
|
470
|
+
|
|
471
|
+
* Result after Docgenerator::Packages::Scrpage2::Automark#cR:
|
|
472
|
+
|
|
473
|
+
<<START>>\automark{content}
|
|
474
|
+
<<END>>
|
|
475
|
+
|
|
476
|
+
* Result after Docgenerator::Packages::Scrpage2::Automark#Cr:
|
|
477
|
+
|
|
478
|
+
<<START>>
|
|
479
|
+
\automark{content}
|
|
480
|
+
<<END>>
|
|
481
|
+
|
|
482
|
+
* Result after Docgenerator::Packages::Scrpage2::Automark#CR:
|
|
483
|
+
|
|
484
|
+
<<START>>
|
|
485
|
+
\automark{content}
|
|
486
|
+
<<END>>
|
|
487
|
+
|
|
488
|
+
===Docgenerator::Packages::Scrpage2::Automark#to_html
|
|
489
|
+
<span >content</span>
|
|
490
|
+
|
|
491
|
+
* No output routine defined for html - use a dummy
|
|
492
|
+
===Docgenerator::Packages::Scrpage2::Automark#to_context
|
|
493
|
+
\automark{content}
|
|
494
|
+
|
|
495
|
+
* No output routine defined for context - use a dummy
|
|
496
|
+
===Docgenerator::Packages::Scrpage2::Automark#to_text
|
|
497
|
+
content
|
|
498
|
+
|
|
499
|
+
* No output routine defined for text - use a dummy
|
|
500
|
+
===Docgenerator::Packages::Scrpage2::Automark#to_wiki
|
|
501
|
+
content
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
* No output routine defined for wiki - use a dummy
|
|
505
|
+
===Docgenerator::Packages::Scrpage2::Automark#to_creole
|
|
506
|
+
content
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
* No output routine defined for creole - use a dummy
|
|
510
|
+
=end
|
|
511
|
+
class Automark << Docgenerator::Element
|
|
512
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
513
|
+
end #class Automark
|
|
514
|
+
end #module Scrpage2
|
|
515
|
+
end #module Packages
|
|
516
|
+
end #module Docgenerator
|
|
517
|
+
module Docgenerator
|
|
518
|
+
module Packages
|
|
519
|
+
module Scrpage2
|
|
520
|
+
=begin rdoc
|
|
521
|
+
=Docgenerator::Packages::Scrpage2::Lehead
|
|
522
|
+
|
|
523
|
+
==Attributes
|
|
524
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
525
|
+
====================================================================================================
|
|
526
|
+
rightmark : - - X - - - - -
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
Docgenerator::Packages::Scrpage2::Lehead can contain content.
|
|
530
|
+
|
|
531
|
+
==Generate an object
|
|
532
|
+
test = Docgenerator::Packages::Scrpage2::Lehead.new( {
|
|
533
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
534
|
+
}, 'content')
|
|
535
|
+
|
|
536
|
+
Alternative generation
|
|
537
|
+
test = element(:lehead, {...Attributes...}, 'content' )
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
==Outputs
|
|
541
|
+
===Docgenerator::Packages::Scrpage2::Lehead#to_latex
|
|
542
|
+
\lehead{content}
|
|
543
|
+
|
|
544
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Lehead#.to_latex
|
|
545
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
546
|
+
|
|
547
|
+
Default:
|
|
548
|
+
<<START>>\lehead{content}<<END>>
|
|
549
|
+
|
|
550
|
+
* Result after Docgenerator::Packages::Scrpage2::Lehead#cr:
|
|
551
|
+
|
|
552
|
+
<<START>>\lehead{content}
|
|
553
|
+
<<END>>
|
|
554
|
+
|
|
555
|
+
* Result after Docgenerator::Packages::Scrpage2::Lehead#cR:
|
|
556
|
+
|
|
557
|
+
<<START>>\lehead{content}
|
|
558
|
+
<<END>>
|
|
559
|
+
|
|
560
|
+
* Result after Docgenerator::Packages::Scrpage2::Lehead#Cr:
|
|
561
|
+
|
|
562
|
+
<<START>>
|
|
563
|
+
\lehead{content}
|
|
564
|
+
<<END>>
|
|
565
|
+
|
|
566
|
+
* Result after Docgenerator::Packages::Scrpage2::Lehead#CR:
|
|
567
|
+
|
|
568
|
+
<<START>>
|
|
569
|
+
\lehead{content}
|
|
570
|
+
<<END>>
|
|
571
|
+
|
|
572
|
+
===Docgenerator::Packages::Scrpage2::Lehead#to_html
|
|
573
|
+
<span >content</span>
|
|
574
|
+
|
|
575
|
+
* No output routine defined for html - use a dummy
|
|
576
|
+
===Docgenerator::Packages::Scrpage2::Lehead#to_context
|
|
577
|
+
\lehead{content}
|
|
578
|
+
|
|
579
|
+
* No output routine defined for context - use a dummy
|
|
580
|
+
===Docgenerator::Packages::Scrpage2::Lehead#to_text
|
|
581
|
+
content
|
|
582
|
+
|
|
583
|
+
* No output routine defined for text - use a dummy
|
|
584
|
+
===Docgenerator::Packages::Scrpage2::Lehead#to_wiki
|
|
585
|
+
content
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
* No output routine defined for wiki - use a dummy
|
|
589
|
+
===Docgenerator::Packages::Scrpage2::Lehead#to_creole
|
|
590
|
+
content
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
* No output routine defined for creole - use a dummy
|
|
594
|
+
=end
|
|
595
|
+
class Lehead << Docgenerator::Element
|
|
596
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
597
|
+
end #class Lehead
|
|
598
|
+
end #module Scrpage2
|
|
599
|
+
end #module Packages
|
|
600
|
+
end #module Docgenerator
|
|
601
|
+
module Docgenerator
|
|
602
|
+
module Packages
|
|
603
|
+
module Scrpage2
|
|
604
|
+
=begin rdoc
|
|
605
|
+
=Docgenerator::Packages::Scrpage2::Cehead
|
|
606
|
+
|
|
607
|
+
==Attributes
|
|
608
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
609
|
+
====================================================================================================
|
|
610
|
+
rightmark : - - X - - - - -
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
Docgenerator::Packages::Scrpage2::Cehead can contain content.
|
|
614
|
+
|
|
615
|
+
==Generate an object
|
|
616
|
+
test = Docgenerator::Packages::Scrpage2::Cehead.new( {
|
|
617
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
618
|
+
}, 'content')
|
|
619
|
+
|
|
620
|
+
Alternative generation
|
|
621
|
+
test = element(:cehead, {...Attributes...}, 'content' )
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
==Outputs
|
|
625
|
+
===Docgenerator::Packages::Scrpage2::Cehead#to_latex
|
|
626
|
+
\cehead{content}
|
|
627
|
+
|
|
628
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Cehead#.to_latex
|
|
629
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
630
|
+
|
|
631
|
+
Default:
|
|
632
|
+
<<START>>\cehead{content}<<END>>
|
|
633
|
+
|
|
634
|
+
* Result after Docgenerator::Packages::Scrpage2::Cehead#cr:
|
|
635
|
+
|
|
636
|
+
<<START>>\cehead{content}
|
|
637
|
+
<<END>>
|
|
638
|
+
|
|
639
|
+
* Result after Docgenerator::Packages::Scrpage2::Cehead#cR:
|
|
640
|
+
|
|
641
|
+
<<START>>\cehead{content}
|
|
642
|
+
<<END>>
|
|
643
|
+
|
|
644
|
+
* Result after Docgenerator::Packages::Scrpage2::Cehead#Cr:
|
|
645
|
+
|
|
646
|
+
<<START>>
|
|
647
|
+
\cehead{content}
|
|
648
|
+
<<END>>
|
|
649
|
+
|
|
650
|
+
* Result after Docgenerator::Packages::Scrpage2::Cehead#CR:
|
|
651
|
+
|
|
652
|
+
<<START>>
|
|
653
|
+
\cehead{content}
|
|
654
|
+
<<END>>
|
|
655
|
+
|
|
656
|
+
===Docgenerator::Packages::Scrpage2::Cehead#to_html
|
|
657
|
+
<span >content</span>
|
|
658
|
+
|
|
659
|
+
* No output routine defined for html - use a dummy
|
|
660
|
+
===Docgenerator::Packages::Scrpage2::Cehead#to_context
|
|
661
|
+
\cehead{content}
|
|
662
|
+
|
|
663
|
+
* No output routine defined for context - use a dummy
|
|
664
|
+
===Docgenerator::Packages::Scrpage2::Cehead#to_text
|
|
665
|
+
content
|
|
666
|
+
|
|
667
|
+
* No output routine defined for text - use a dummy
|
|
668
|
+
===Docgenerator::Packages::Scrpage2::Cehead#to_wiki
|
|
669
|
+
content
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
* No output routine defined for wiki - use a dummy
|
|
673
|
+
===Docgenerator::Packages::Scrpage2::Cehead#to_creole
|
|
674
|
+
content
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
* No output routine defined for creole - use a dummy
|
|
678
|
+
=end
|
|
679
|
+
class Cehead << Docgenerator::Element
|
|
680
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
681
|
+
end #class Cehead
|
|
682
|
+
end #module Scrpage2
|
|
683
|
+
end #module Packages
|
|
684
|
+
end #module Docgenerator
|
|
685
|
+
module Docgenerator
|
|
686
|
+
module Packages
|
|
687
|
+
module Scrpage2
|
|
688
|
+
=begin rdoc
|
|
689
|
+
=Docgenerator::Packages::Scrpage2::Rehead
|
|
690
|
+
|
|
691
|
+
==Attributes
|
|
692
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
693
|
+
====================================================================================================
|
|
694
|
+
rightmark : - - X - - - - -
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
Docgenerator::Packages::Scrpage2::Rehead can contain content.
|
|
698
|
+
|
|
699
|
+
==Generate an object
|
|
700
|
+
test = Docgenerator::Packages::Scrpage2::Rehead.new( {
|
|
701
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
702
|
+
}, 'content')
|
|
703
|
+
|
|
704
|
+
Alternative generation
|
|
705
|
+
test = element(:rehead, {...Attributes...}, 'content' )
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
==Outputs
|
|
709
|
+
===Docgenerator::Packages::Scrpage2::Rehead#to_latex
|
|
710
|
+
\rehead{content}
|
|
711
|
+
|
|
712
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Rehead#.to_latex
|
|
713
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
714
|
+
|
|
715
|
+
Default:
|
|
716
|
+
<<START>>\rehead{content}<<END>>
|
|
717
|
+
|
|
718
|
+
* Result after Docgenerator::Packages::Scrpage2::Rehead#cr:
|
|
719
|
+
|
|
720
|
+
<<START>>\rehead{content}
|
|
721
|
+
<<END>>
|
|
722
|
+
|
|
723
|
+
* Result after Docgenerator::Packages::Scrpage2::Rehead#cR:
|
|
724
|
+
|
|
725
|
+
<<START>>\rehead{content}
|
|
726
|
+
<<END>>
|
|
727
|
+
|
|
728
|
+
* Result after Docgenerator::Packages::Scrpage2::Rehead#Cr:
|
|
729
|
+
|
|
730
|
+
<<START>>
|
|
731
|
+
\rehead{content}
|
|
732
|
+
<<END>>
|
|
733
|
+
|
|
734
|
+
* Result after Docgenerator::Packages::Scrpage2::Rehead#CR:
|
|
735
|
+
|
|
736
|
+
<<START>>
|
|
737
|
+
\rehead{content}
|
|
738
|
+
<<END>>
|
|
739
|
+
|
|
740
|
+
===Docgenerator::Packages::Scrpage2::Rehead#to_html
|
|
741
|
+
<span >content</span>
|
|
742
|
+
|
|
743
|
+
* No output routine defined for html - use a dummy
|
|
744
|
+
===Docgenerator::Packages::Scrpage2::Rehead#to_context
|
|
745
|
+
\rehead{content}
|
|
746
|
+
|
|
747
|
+
* No output routine defined for context - use a dummy
|
|
748
|
+
===Docgenerator::Packages::Scrpage2::Rehead#to_text
|
|
749
|
+
content
|
|
750
|
+
|
|
751
|
+
* No output routine defined for text - use a dummy
|
|
752
|
+
===Docgenerator::Packages::Scrpage2::Rehead#to_wiki
|
|
753
|
+
content
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
* No output routine defined for wiki - use a dummy
|
|
757
|
+
===Docgenerator::Packages::Scrpage2::Rehead#to_creole
|
|
758
|
+
content
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
* No output routine defined for creole - use a dummy
|
|
762
|
+
=end
|
|
763
|
+
class Rehead << Docgenerator::Element
|
|
764
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
765
|
+
end #class Rehead
|
|
766
|
+
end #module Scrpage2
|
|
767
|
+
end #module Packages
|
|
768
|
+
end #module Docgenerator
|
|
769
|
+
module Docgenerator
|
|
770
|
+
module Packages
|
|
771
|
+
module Scrpage2
|
|
772
|
+
=begin rdoc
|
|
773
|
+
=Docgenerator::Packages::Scrpage2::Lefoot
|
|
774
|
+
|
|
775
|
+
==Attributes
|
|
776
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
777
|
+
====================================================================================================
|
|
778
|
+
rightmark : - - X - - - - -
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
Docgenerator::Packages::Scrpage2::Lefoot can contain content.
|
|
782
|
+
|
|
783
|
+
==Generate an object
|
|
784
|
+
test = Docgenerator::Packages::Scrpage2::Lefoot.new( {
|
|
785
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
786
|
+
}, 'content')
|
|
787
|
+
|
|
788
|
+
Alternative generation
|
|
789
|
+
test = element(:lefoot, {...Attributes...}, 'content' )
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
==Outputs
|
|
793
|
+
===Docgenerator::Packages::Scrpage2::Lefoot#to_latex
|
|
794
|
+
\lefoot{content}
|
|
795
|
+
|
|
796
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Lefoot#.to_latex
|
|
797
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
798
|
+
|
|
799
|
+
Default:
|
|
800
|
+
<<START>>\lefoot{content}<<END>>
|
|
801
|
+
|
|
802
|
+
* Result after Docgenerator::Packages::Scrpage2::Lefoot#cr:
|
|
803
|
+
|
|
804
|
+
<<START>>\lefoot{content}
|
|
805
|
+
<<END>>
|
|
806
|
+
|
|
807
|
+
* Result after Docgenerator::Packages::Scrpage2::Lefoot#cR:
|
|
808
|
+
|
|
809
|
+
<<START>>\lefoot{content}
|
|
810
|
+
<<END>>
|
|
811
|
+
|
|
812
|
+
* Result after Docgenerator::Packages::Scrpage2::Lefoot#Cr:
|
|
813
|
+
|
|
814
|
+
<<START>>
|
|
815
|
+
\lefoot{content}
|
|
816
|
+
<<END>>
|
|
817
|
+
|
|
818
|
+
* Result after Docgenerator::Packages::Scrpage2::Lefoot#CR:
|
|
819
|
+
|
|
820
|
+
<<START>>
|
|
821
|
+
\lefoot{content}
|
|
822
|
+
<<END>>
|
|
823
|
+
|
|
824
|
+
===Docgenerator::Packages::Scrpage2::Lefoot#to_html
|
|
825
|
+
<span >content</span>
|
|
826
|
+
|
|
827
|
+
* No output routine defined for html - use a dummy
|
|
828
|
+
===Docgenerator::Packages::Scrpage2::Lefoot#to_context
|
|
829
|
+
\lefoot{content}
|
|
830
|
+
|
|
831
|
+
* No output routine defined for context - use a dummy
|
|
832
|
+
===Docgenerator::Packages::Scrpage2::Lefoot#to_text
|
|
833
|
+
content
|
|
834
|
+
|
|
835
|
+
* No output routine defined for text - use a dummy
|
|
836
|
+
===Docgenerator::Packages::Scrpage2::Lefoot#to_wiki
|
|
837
|
+
content
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
* No output routine defined for wiki - use a dummy
|
|
841
|
+
===Docgenerator::Packages::Scrpage2::Lefoot#to_creole
|
|
842
|
+
content
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
* No output routine defined for creole - use a dummy
|
|
846
|
+
=end
|
|
847
|
+
class Lefoot << Docgenerator::Element
|
|
848
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
849
|
+
end #class Lefoot
|
|
850
|
+
end #module Scrpage2
|
|
851
|
+
end #module Packages
|
|
852
|
+
end #module Docgenerator
|
|
853
|
+
module Docgenerator
|
|
854
|
+
module Packages
|
|
855
|
+
module Scrpage2
|
|
856
|
+
=begin rdoc
|
|
857
|
+
=Docgenerator::Packages::Scrpage2::Cefoot
|
|
858
|
+
|
|
859
|
+
==Attributes
|
|
860
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
861
|
+
====================================================================================================
|
|
862
|
+
rightmark : - - X - - - - -
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
Docgenerator::Packages::Scrpage2::Cefoot can contain content.
|
|
866
|
+
|
|
867
|
+
==Generate an object
|
|
868
|
+
test = Docgenerator::Packages::Scrpage2::Cefoot.new( {
|
|
869
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
870
|
+
}, 'content')
|
|
871
|
+
|
|
872
|
+
Alternative generation
|
|
873
|
+
test = element(:cefoot, {...Attributes...}, 'content' )
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
==Outputs
|
|
877
|
+
===Docgenerator::Packages::Scrpage2::Cefoot#to_latex
|
|
878
|
+
\cefoot{content}
|
|
879
|
+
|
|
880
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Cefoot#.to_latex
|
|
881
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
882
|
+
|
|
883
|
+
Default:
|
|
884
|
+
<<START>>\cefoot{content}<<END>>
|
|
885
|
+
|
|
886
|
+
* Result after Docgenerator::Packages::Scrpage2::Cefoot#cr:
|
|
887
|
+
|
|
888
|
+
<<START>>\cefoot{content}
|
|
889
|
+
<<END>>
|
|
890
|
+
|
|
891
|
+
* Result after Docgenerator::Packages::Scrpage2::Cefoot#cR:
|
|
892
|
+
|
|
893
|
+
<<START>>\cefoot{content}
|
|
894
|
+
<<END>>
|
|
895
|
+
|
|
896
|
+
* Result after Docgenerator::Packages::Scrpage2::Cefoot#Cr:
|
|
897
|
+
|
|
898
|
+
<<START>>
|
|
899
|
+
\cefoot{content}
|
|
900
|
+
<<END>>
|
|
901
|
+
|
|
902
|
+
* Result after Docgenerator::Packages::Scrpage2::Cefoot#CR:
|
|
903
|
+
|
|
904
|
+
<<START>>
|
|
905
|
+
\cefoot{content}
|
|
906
|
+
<<END>>
|
|
907
|
+
|
|
908
|
+
===Docgenerator::Packages::Scrpage2::Cefoot#to_html
|
|
909
|
+
<span >content</span>
|
|
910
|
+
|
|
911
|
+
* No output routine defined for html - use a dummy
|
|
912
|
+
===Docgenerator::Packages::Scrpage2::Cefoot#to_context
|
|
913
|
+
\cefoot{content}
|
|
914
|
+
|
|
915
|
+
* No output routine defined for context - use a dummy
|
|
916
|
+
===Docgenerator::Packages::Scrpage2::Cefoot#to_text
|
|
917
|
+
content
|
|
918
|
+
|
|
919
|
+
* No output routine defined for text - use a dummy
|
|
920
|
+
===Docgenerator::Packages::Scrpage2::Cefoot#to_wiki
|
|
921
|
+
content
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
* No output routine defined for wiki - use a dummy
|
|
925
|
+
===Docgenerator::Packages::Scrpage2::Cefoot#to_creole
|
|
926
|
+
content
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
* No output routine defined for creole - use a dummy
|
|
930
|
+
=end
|
|
931
|
+
class Cefoot << Docgenerator::Element
|
|
932
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
933
|
+
end #class Cefoot
|
|
934
|
+
end #module Scrpage2
|
|
935
|
+
end #module Packages
|
|
936
|
+
end #module Docgenerator
|
|
937
|
+
module Docgenerator
|
|
938
|
+
module Packages
|
|
939
|
+
module Scrpage2
|
|
940
|
+
=begin rdoc
|
|
941
|
+
=Docgenerator::Packages::Scrpage2::Refoot
|
|
942
|
+
|
|
943
|
+
==Attributes
|
|
944
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
945
|
+
====================================================================================================
|
|
946
|
+
rightmark : - - X - - - - -
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
Docgenerator::Packages::Scrpage2::Refoot can contain content.
|
|
950
|
+
|
|
951
|
+
==Generate an object
|
|
952
|
+
test = Docgenerator::Packages::Scrpage2::Refoot.new( {
|
|
953
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
954
|
+
}, 'content')
|
|
955
|
+
|
|
956
|
+
Alternative generation
|
|
957
|
+
test = element(:refoot, {...Attributes...}, 'content' )
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
==Outputs
|
|
961
|
+
===Docgenerator::Packages::Scrpage2::Refoot#to_latex
|
|
962
|
+
\refoot{content}
|
|
963
|
+
|
|
964
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Refoot#.to_latex
|
|
965
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
966
|
+
|
|
967
|
+
Default:
|
|
968
|
+
<<START>>\refoot{content}<<END>>
|
|
969
|
+
|
|
970
|
+
* Result after Docgenerator::Packages::Scrpage2::Refoot#cr:
|
|
971
|
+
|
|
972
|
+
<<START>>\refoot{content}
|
|
973
|
+
<<END>>
|
|
974
|
+
|
|
975
|
+
* Result after Docgenerator::Packages::Scrpage2::Refoot#cR:
|
|
976
|
+
|
|
977
|
+
<<START>>\refoot{content}
|
|
978
|
+
<<END>>
|
|
979
|
+
|
|
980
|
+
* Result after Docgenerator::Packages::Scrpage2::Refoot#Cr:
|
|
981
|
+
|
|
982
|
+
<<START>>
|
|
983
|
+
\refoot{content}
|
|
984
|
+
<<END>>
|
|
985
|
+
|
|
986
|
+
* Result after Docgenerator::Packages::Scrpage2::Refoot#CR:
|
|
987
|
+
|
|
988
|
+
<<START>>
|
|
989
|
+
\refoot{content}
|
|
990
|
+
<<END>>
|
|
991
|
+
|
|
992
|
+
===Docgenerator::Packages::Scrpage2::Refoot#to_html
|
|
993
|
+
<span >content</span>
|
|
994
|
+
|
|
995
|
+
* No output routine defined for html - use a dummy
|
|
996
|
+
===Docgenerator::Packages::Scrpage2::Refoot#to_context
|
|
997
|
+
\refoot{content}
|
|
998
|
+
|
|
999
|
+
* No output routine defined for context - use a dummy
|
|
1000
|
+
===Docgenerator::Packages::Scrpage2::Refoot#to_text
|
|
1001
|
+
content
|
|
1002
|
+
|
|
1003
|
+
* No output routine defined for text - use a dummy
|
|
1004
|
+
===Docgenerator::Packages::Scrpage2::Refoot#to_wiki
|
|
1005
|
+
content
|
|
1006
|
+
|
|
1007
|
+
|
|
1008
|
+
* No output routine defined for wiki - use a dummy
|
|
1009
|
+
===Docgenerator::Packages::Scrpage2::Refoot#to_creole
|
|
1010
|
+
content
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
* No output routine defined for creole - use a dummy
|
|
1014
|
+
=end
|
|
1015
|
+
class Refoot << Docgenerator::Element
|
|
1016
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1017
|
+
end #class Refoot
|
|
1018
|
+
end #module Scrpage2
|
|
1019
|
+
end #module Packages
|
|
1020
|
+
end #module Docgenerator
|
|
1021
|
+
module Docgenerator
|
|
1022
|
+
module Packages
|
|
1023
|
+
module Scrpage2
|
|
1024
|
+
=begin rdoc
|
|
1025
|
+
=Docgenerator::Packages::Scrpage2::Lohead
|
|
1026
|
+
|
|
1027
|
+
==Attributes
|
|
1028
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1029
|
+
====================================================================================================
|
|
1030
|
+
rightmark : - - X - - - - -
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
Docgenerator::Packages::Scrpage2::Lohead can contain content.
|
|
1034
|
+
|
|
1035
|
+
==Generate an object
|
|
1036
|
+
test = Docgenerator::Packages::Scrpage2::Lohead.new( {
|
|
1037
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1038
|
+
}, 'content')
|
|
1039
|
+
|
|
1040
|
+
Alternative generation
|
|
1041
|
+
test = element(:lohead, {...Attributes...}, 'content' )
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
==Outputs
|
|
1045
|
+
===Docgenerator::Packages::Scrpage2::Lohead#to_latex
|
|
1046
|
+
\lohead{content}
|
|
1047
|
+
|
|
1048
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Lohead#.to_latex
|
|
1049
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1050
|
+
|
|
1051
|
+
Default:
|
|
1052
|
+
<<START>>\lohead{content}<<END>>
|
|
1053
|
+
|
|
1054
|
+
* Result after Docgenerator::Packages::Scrpage2::Lohead#cr:
|
|
1055
|
+
|
|
1056
|
+
<<START>>\lohead{content}
|
|
1057
|
+
<<END>>
|
|
1058
|
+
|
|
1059
|
+
* Result after Docgenerator::Packages::Scrpage2::Lohead#cR:
|
|
1060
|
+
|
|
1061
|
+
<<START>>\lohead{content}
|
|
1062
|
+
<<END>>
|
|
1063
|
+
|
|
1064
|
+
* Result after Docgenerator::Packages::Scrpage2::Lohead#Cr:
|
|
1065
|
+
|
|
1066
|
+
<<START>>
|
|
1067
|
+
\lohead{content}
|
|
1068
|
+
<<END>>
|
|
1069
|
+
|
|
1070
|
+
* Result after Docgenerator::Packages::Scrpage2::Lohead#CR:
|
|
1071
|
+
|
|
1072
|
+
<<START>>
|
|
1073
|
+
\lohead{content}
|
|
1074
|
+
<<END>>
|
|
1075
|
+
|
|
1076
|
+
===Docgenerator::Packages::Scrpage2::Lohead#to_html
|
|
1077
|
+
<span >content</span>
|
|
1078
|
+
|
|
1079
|
+
* No output routine defined for html - use a dummy
|
|
1080
|
+
===Docgenerator::Packages::Scrpage2::Lohead#to_context
|
|
1081
|
+
\lohead{content}
|
|
1082
|
+
|
|
1083
|
+
* No output routine defined for context - use a dummy
|
|
1084
|
+
===Docgenerator::Packages::Scrpage2::Lohead#to_text
|
|
1085
|
+
content
|
|
1086
|
+
|
|
1087
|
+
* No output routine defined for text - use a dummy
|
|
1088
|
+
===Docgenerator::Packages::Scrpage2::Lohead#to_wiki
|
|
1089
|
+
content
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
* No output routine defined for wiki - use a dummy
|
|
1093
|
+
===Docgenerator::Packages::Scrpage2::Lohead#to_creole
|
|
1094
|
+
content
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
* No output routine defined for creole - use a dummy
|
|
1098
|
+
=end
|
|
1099
|
+
class Lohead << Docgenerator::Element
|
|
1100
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1101
|
+
end #class Lohead
|
|
1102
|
+
end #module Scrpage2
|
|
1103
|
+
end #module Packages
|
|
1104
|
+
end #module Docgenerator
|
|
1105
|
+
module Docgenerator
|
|
1106
|
+
module Packages
|
|
1107
|
+
module Scrpage2
|
|
1108
|
+
=begin rdoc
|
|
1109
|
+
=Docgenerator::Packages::Scrpage2::Cohead
|
|
1110
|
+
|
|
1111
|
+
==Attributes
|
|
1112
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1113
|
+
====================================================================================================
|
|
1114
|
+
rightmark : - - X - - - - -
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
Docgenerator::Packages::Scrpage2::Cohead can contain content.
|
|
1118
|
+
|
|
1119
|
+
==Generate an object
|
|
1120
|
+
test = Docgenerator::Packages::Scrpage2::Cohead.new( {
|
|
1121
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1122
|
+
}, 'content')
|
|
1123
|
+
|
|
1124
|
+
Alternative generation
|
|
1125
|
+
test = element(:cohead, {...Attributes...}, 'content' )
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
==Outputs
|
|
1129
|
+
===Docgenerator::Packages::Scrpage2::Cohead#to_latex
|
|
1130
|
+
\cohead{content}
|
|
1131
|
+
|
|
1132
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Cohead#.to_latex
|
|
1133
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1134
|
+
|
|
1135
|
+
Default:
|
|
1136
|
+
<<START>>\cohead{content}<<END>>
|
|
1137
|
+
|
|
1138
|
+
* Result after Docgenerator::Packages::Scrpage2::Cohead#cr:
|
|
1139
|
+
|
|
1140
|
+
<<START>>\cohead{content}
|
|
1141
|
+
<<END>>
|
|
1142
|
+
|
|
1143
|
+
* Result after Docgenerator::Packages::Scrpage2::Cohead#cR:
|
|
1144
|
+
|
|
1145
|
+
<<START>>\cohead{content}
|
|
1146
|
+
<<END>>
|
|
1147
|
+
|
|
1148
|
+
* Result after Docgenerator::Packages::Scrpage2::Cohead#Cr:
|
|
1149
|
+
|
|
1150
|
+
<<START>>
|
|
1151
|
+
\cohead{content}
|
|
1152
|
+
<<END>>
|
|
1153
|
+
|
|
1154
|
+
* Result after Docgenerator::Packages::Scrpage2::Cohead#CR:
|
|
1155
|
+
|
|
1156
|
+
<<START>>
|
|
1157
|
+
\cohead{content}
|
|
1158
|
+
<<END>>
|
|
1159
|
+
|
|
1160
|
+
===Docgenerator::Packages::Scrpage2::Cohead#to_html
|
|
1161
|
+
<span >content</span>
|
|
1162
|
+
|
|
1163
|
+
* No output routine defined for html - use a dummy
|
|
1164
|
+
===Docgenerator::Packages::Scrpage2::Cohead#to_context
|
|
1165
|
+
\cohead{content}
|
|
1166
|
+
|
|
1167
|
+
* No output routine defined for context - use a dummy
|
|
1168
|
+
===Docgenerator::Packages::Scrpage2::Cohead#to_text
|
|
1169
|
+
content
|
|
1170
|
+
|
|
1171
|
+
* No output routine defined for text - use a dummy
|
|
1172
|
+
===Docgenerator::Packages::Scrpage2::Cohead#to_wiki
|
|
1173
|
+
content
|
|
1174
|
+
|
|
1175
|
+
|
|
1176
|
+
* No output routine defined for wiki - use a dummy
|
|
1177
|
+
===Docgenerator::Packages::Scrpage2::Cohead#to_creole
|
|
1178
|
+
content
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
* No output routine defined for creole - use a dummy
|
|
1182
|
+
=end
|
|
1183
|
+
class Cohead << Docgenerator::Element
|
|
1184
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1185
|
+
end #class Cohead
|
|
1186
|
+
end #module Scrpage2
|
|
1187
|
+
end #module Packages
|
|
1188
|
+
end #module Docgenerator
|
|
1189
|
+
module Docgenerator
|
|
1190
|
+
module Packages
|
|
1191
|
+
module Scrpage2
|
|
1192
|
+
=begin rdoc
|
|
1193
|
+
=Docgenerator::Packages::Scrpage2::Rohead
|
|
1194
|
+
|
|
1195
|
+
==Attributes
|
|
1196
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1197
|
+
====================================================================================================
|
|
1198
|
+
rightmark : - - X - - - - -
|
|
1199
|
+
|
|
1200
|
+
|
|
1201
|
+
Docgenerator::Packages::Scrpage2::Rohead can contain content.
|
|
1202
|
+
|
|
1203
|
+
==Generate an object
|
|
1204
|
+
test = Docgenerator::Packages::Scrpage2::Rohead.new( {
|
|
1205
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1206
|
+
}, 'content')
|
|
1207
|
+
|
|
1208
|
+
Alternative generation
|
|
1209
|
+
test = element(:rohead, {...Attributes...}, 'content' )
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
==Outputs
|
|
1213
|
+
===Docgenerator::Packages::Scrpage2::Rohead#to_latex
|
|
1214
|
+
\rohead{content}
|
|
1215
|
+
|
|
1216
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Rohead#.to_latex
|
|
1217
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1218
|
+
|
|
1219
|
+
Default:
|
|
1220
|
+
<<START>>\rohead{content}<<END>>
|
|
1221
|
+
|
|
1222
|
+
* Result after Docgenerator::Packages::Scrpage2::Rohead#cr:
|
|
1223
|
+
|
|
1224
|
+
<<START>>\rohead{content}
|
|
1225
|
+
<<END>>
|
|
1226
|
+
|
|
1227
|
+
* Result after Docgenerator::Packages::Scrpage2::Rohead#cR:
|
|
1228
|
+
|
|
1229
|
+
<<START>>\rohead{content}
|
|
1230
|
+
<<END>>
|
|
1231
|
+
|
|
1232
|
+
* Result after Docgenerator::Packages::Scrpage2::Rohead#Cr:
|
|
1233
|
+
|
|
1234
|
+
<<START>>
|
|
1235
|
+
\rohead{content}
|
|
1236
|
+
<<END>>
|
|
1237
|
+
|
|
1238
|
+
* Result after Docgenerator::Packages::Scrpage2::Rohead#CR:
|
|
1239
|
+
|
|
1240
|
+
<<START>>
|
|
1241
|
+
\rohead{content}
|
|
1242
|
+
<<END>>
|
|
1243
|
+
|
|
1244
|
+
===Docgenerator::Packages::Scrpage2::Rohead#to_html
|
|
1245
|
+
<span >content</span>
|
|
1246
|
+
|
|
1247
|
+
* No output routine defined for html - use a dummy
|
|
1248
|
+
===Docgenerator::Packages::Scrpage2::Rohead#to_context
|
|
1249
|
+
\rohead{content}
|
|
1250
|
+
|
|
1251
|
+
* No output routine defined for context - use a dummy
|
|
1252
|
+
===Docgenerator::Packages::Scrpage2::Rohead#to_text
|
|
1253
|
+
content
|
|
1254
|
+
|
|
1255
|
+
* No output routine defined for text - use a dummy
|
|
1256
|
+
===Docgenerator::Packages::Scrpage2::Rohead#to_wiki
|
|
1257
|
+
content
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
* No output routine defined for wiki - use a dummy
|
|
1261
|
+
===Docgenerator::Packages::Scrpage2::Rohead#to_creole
|
|
1262
|
+
content
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
* No output routine defined for creole - use a dummy
|
|
1266
|
+
=end
|
|
1267
|
+
class Rohead << Docgenerator::Element
|
|
1268
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1269
|
+
end #class Rohead
|
|
1270
|
+
end #module Scrpage2
|
|
1271
|
+
end #module Packages
|
|
1272
|
+
end #module Docgenerator
|
|
1273
|
+
module Docgenerator
|
|
1274
|
+
module Packages
|
|
1275
|
+
module Scrpage2
|
|
1276
|
+
=begin rdoc
|
|
1277
|
+
=Docgenerator::Packages::Scrpage2::Lofoot
|
|
1278
|
+
|
|
1279
|
+
==Attributes
|
|
1280
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1281
|
+
====================================================================================================
|
|
1282
|
+
rightmark : - - X - - - - -
|
|
1283
|
+
|
|
1284
|
+
|
|
1285
|
+
Docgenerator::Packages::Scrpage2::Lofoot can contain content.
|
|
1286
|
+
|
|
1287
|
+
==Generate an object
|
|
1288
|
+
test = Docgenerator::Packages::Scrpage2::Lofoot.new( {
|
|
1289
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1290
|
+
}, 'content')
|
|
1291
|
+
|
|
1292
|
+
Alternative generation
|
|
1293
|
+
test = element(:lofoot, {...Attributes...}, 'content' )
|
|
1294
|
+
|
|
1295
|
+
|
|
1296
|
+
==Outputs
|
|
1297
|
+
===Docgenerator::Packages::Scrpage2::Lofoot#to_latex
|
|
1298
|
+
\lofoot{content}
|
|
1299
|
+
|
|
1300
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Lofoot#.to_latex
|
|
1301
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1302
|
+
|
|
1303
|
+
Default:
|
|
1304
|
+
<<START>>\lofoot{content}<<END>>
|
|
1305
|
+
|
|
1306
|
+
* Result after Docgenerator::Packages::Scrpage2::Lofoot#cr:
|
|
1307
|
+
|
|
1308
|
+
<<START>>\lofoot{content}
|
|
1309
|
+
<<END>>
|
|
1310
|
+
|
|
1311
|
+
* Result after Docgenerator::Packages::Scrpage2::Lofoot#cR:
|
|
1312
|
+
|
|
1313
|
+
<<START>>\lofoot{content}
|
|
1314
|
+
<<END>>
|
|
1315
|
+
|
|
1316
|
+
* Result after Docgenerator::Packages::Scrpage2::Lofoot#Cr:
|
|
1317
|
+
|
|
1318
|
+
<<START>>
|
|
1319
|
+
\lofoot{content}
|
|
1320
|
+
<<END>>
|
|
1321
|
+
|
|
1322
|
+
* Result after Docgenerator::Packages::Scrpage2::Lofoot#CR:
|
|
1323
|
+
|
|
1324
|
+
<<START>>
|
|
1325
|
+
\lofoot{content}
|
|
1326
|
+
<<END>>
|
|
1327
|
+
|
|
1328
|
+
===Docgenerator::Packages::Scrpage2::Lofoot#to_html
|
|
1329
|
+
<span >content</span>
|
|
1330
|
+
|
|
1331
|
+
* No output routine defined for html - use a dummy
|
|
1332
|
+
===Docgenerator::Packages::Scrpage2::Lofoot#to_context
|
|
1333
|
+
\lofoot{content}
|
|
1334
|
+
|
|
1335
|
+
* No output routine defined for context - use a dummy
|
|
1336
|
+
===Docgenerator::Packages::Scrpage2::Lofoot#to_text
|
|
1337
|
+
content
|
|
1338
|
+
|
|
1339
|
+
* No output routine defined for text - use a dummy
|
|
1340
|
+
===Docgenerator::Packages::Scrpage2::Lofoot#to_wiki
|
|
1341
|
+
content
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
* No output routine defined for wiki - use a dummy
|
|
1345
|
+
===Docgenerator::Packages::Scrpage2::Lofoot#to_creole
|
|
1346
|
+
content
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
* No output routine defined for creole - use a dummy
|
|
1350
|
+
=end
|
|
1351
|
+
class Lofoot << Docgenerator::Element
|
|
1352
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1353
|
+
end #class Lofoot
|
|
1354
|
+
end #module Scrpage2
|
|
1355
|
+
end #module Packages
|
|
1356
|
+
end #module Docgenerator
|
|
1357
|
+
module Docgenerator
|
|
1358
|
+
module Packages
|
|
1359
|
+
module Scrpage2
|
|
1360
|
+
=begin rdoc
|
|
1361
|
+
=Docgenerator::Packages::Scrpage2::Cofoot
|
|
1362
|
+
|
|
1363
|
+
==Attributes
|
|
1364
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1365
|
+
====================================================================================================
|
|
1366
|
+
rightmark : - - X - - - - -
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
Docgenerator::Packages::Scrpage2::Cofoot can contain content.
|
|
1370
|
+
|
|
1371
|
+
==Generate an object
|
|
1372
|
+
test = Docgenerator::Packages::Scrpage2::Cofoot.new( {
|
|
1373
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1374
|
+
}, 'content')
|
|
1375
|
+
|
|
1376
|
+
Alternative generation
|
|
1377
|
+
test = element(:cofoot, {...Attributes...}, 'content' )
|
|
1378
|
+
|
|
1379
|
+
|
|
1380
|
+
==Outputs
|
|
1381
|
+
===Docgenerator::Packages::Scrpage2::Cofoot#to_latex
|
|
1382
|
+
\cofoot{content}
|
|
1383
|
+
|
|
1384
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Cofoot#.to_latex
|
|
1385
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1386
|
+
|
|
1387
|
+
Default:
|
|
1388
|
+
<<START>>\cofoot{content}<<END>>
|
|
1389
|
+
|
|
1390
|
+
* Result after Docgenerator::Packages::Scrpage2::Cofoot#cr:
|
|
1391
|
+
|
|
1392
|
+
<<START>>\cofoot{content}
|
|
1393
|
+
<<END>>
|
|
1394
|
+
|
|
1395
|
+
* Result after Docgenerator::Packages::Scrpage2::Cofoot#cR:
|
|
1396
|
+
|
|
1397
|
+
<<START>>\cofoot{content}
|
|
1398
|
+
<<END>>
|
|
1399
|
+
|
|
1400
|
+
* Result after Docgenerator::Packages::Scrpage2::Cofoot#Cr:
|
|
1401
|
+
|
|
1402
|
+
<<START>>
|
|
1403
|
+
\cofoot{content}
|
|
1404
|
+
<<END>>
|
|
1405
|
+
|
|
1406
|
+
* Result after Docgenerator::Packages::Scrpage2::Cofoot#CR:
|
|
1407
|
+
|
|
1408
|
+
<<START>>
|
|
1409
|
+
\cofoot{content}
|
|
1410
|
+
<<END>>
|
|
1411
|
+
|
|
1412
|
+
===Docgenerator::Packages::Scrpage2::Cofoot#to_html
|
|
1413
|
+
<span >content</span>
|
|
1414
|
+
|
|
1415
|
+
* No output routine defined for html - use a dummy
|
|
1416
|
+
===Docgenerator::Packages::Scrpage2::Cofoot#to_context
|
|
1417
|
+
\cofoot{content}
|
|
1418
|
+
|
|
1419
|
+
* No output routine defined for context - use a dummy
|
|
1420
|
+
===Docgenerator::Packages::Scrpage2::Cofoot#to_text
|
|
1421
|
+
content
|
|
1422
|
+
|
|
1423
|
+
* No output routine defined for text - use a dummy
|
|
1424
|
+
===Docgenerator::Packages::Scrpage2::Cofoot#to_wiki
|
|
1425
|
+
content
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
* No output routine defined for wiki - use a dummy
|
|
1429
|
+
===Docgenerator::Packages::Scrpage2::Cofoot#to_creole
|
|
1430
|
+
content
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
* No output routine defined for creole - use a dummy
|
|
1434
|
+
=end
|
|
1435
|
+
class Cofoot << Docgenerator::Element
|
|
1436
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1437
|
+
end #class Cofoot
|
|
1438
|
+
end #module Scrpage2
|
|
1439
|
+
end #module Packages
|
|
1440
|
+
end #module Docgenerator
|
|
1441
|
+
module Docgenerator
|
|
1442
|
+
module Packages
|
|
1443
|
+
module Scrpage2
|
|
1444
|
+
=begin rdoc
|
|
1445
|
+
=Docgenerator::Packages::Scrpage2::Rofoot
|
|
1446
|
+
|
|
1447
|
+
==Attributes
|
|
1448
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1449
|
+
====================================================================================================
|
|
1450
|
+
rightmark : - - X - - - - -
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
Docgenerator::Packages::Scrpage2::Rofoot can contain content.
|
|
1454
|
+
|
|
1455
|
+
==Generate an object
|
|
1456
|
+
test = Docgenerator::Packages::Scrpage2::Rofoot.new( {
|
|
1457
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1458
|
+
}, 'content')
|
|
1459
|
+
|
|
1460
|
+
Alternative generation
|
|
1461
|
+
test = element(:rofoot, {...Attributes...}, 'content' )
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
==Outputs
|
|
1465
|
+
===Docgenerator::Packages::Scrpage2::Rofoot#to_latex
|
|
1466
|
+
\rofoot{content}
|
|
1467
|
+
|
|
1468
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Rofoot#.to_latex
|
|
1469
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1470
|
+
|
|
1471
|
+
Default:
|
|
1472
|
+
<<START>>\rofoot{content}<<END>>
|
|
1473
|
+
|
|
1474
|
+
* Result after Docgenerator::Packages::Scrpage2::Rofoot#cr:
|
|
1475
|
+
|
|
1476
|
+
<<START>>\rofoot{content}
|
|
1477
|
+
<<END>>
|
|
1478
|
+
|
|
1479
|
+
* Result after Docgenerator::Packages::Scrpage2::Rofoot#cR:
|
|
1480
|
+
|
|
1481
|
+
<<START>>\rofoot{content}
|
|
1482
|
+
<<END>>
|
|
1483
|
+
|
|
1484
|
+
* Result after Docgenerator::Packages::Scrpage2::Rofoot#Cr:
|
|
1485
|
+
|
|
1486
|
+
<<START>>
|
|
1487
|
+
\rofoot{content}
|
|
1488
|
+
<<END>>
|
|
1489
|
+
|
|
1490
|
+
* Result after Docgenerator::Packages::Scrpage2::Rofoot#CR:
|
|
1491
|
+
|
|
1492
|
+
<<START>>
|
|
1493
|
+
\rofoot{content}
|
|
1494
|
+
<<END>>
|
|
1495
|
+
|
|
1496
|
+
===Docgenerator::Packages::Scrpage2::Rofoot#to_html
|
|
1497
|
+
<span >content</span>
|
|
1498
|
+
|
|
1499
|
+
* No output routine defined for html - use a dummy
|
|
1500
|
+
===Docgenerator::Packages::Scrpage2::Rofoot#to_context
|
|
1501
|
+
\rofoot{content}
|
|
1502
|
+
|
|
1503
|
+
* No output routine defined for context - use a dummy
|
|
1504
|
+
===Docgenerator::Packages::Scrpage2::Rofoot#to_text
|
|
1505
|
+
content
|
|
1506
|
+
|
|
1507
|
+
* No output routine defined for text - use a dummy
|
|
1508
|
+
===Docgenerator::Packages::Scrpage2::Rofoot#to_wiki
|
|
1509
|
+
content
|
|
1510
|
+
|
|
1511
|
+
|
|
1512
|
+
* No output routine defined for wiki - use a dummy
|
|
1513
|
+
===Docgenerator::Packages::Scrpage2::Rofoot#to_creole
|
|
1514
|
+
content
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
* No output routine defined for creole - use a dummy
|
|
1518
|
+
=end
|
|
1519
|
+
class Rofoot << Docgenerator::Element
|
|
1520
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1521
|
+
end #class Rofoot
|
|
1522
|
+
end #module Scrpage2
|
|
1523
|
+
end #module Packages
|
|
1524
|
+
end #module Docgenerator
|
|
1525
|
+
module Docgenerator
|
|
1526
|
+
module Packages
|
|
1527
|
+
module Scrpage2
|
|
1528
|
+
=begin rdoc
|
|
1529
|
+
=Docgenerator::Packages::Scrpage2::Ihead
|
|
1530
|
+
|
|
1531
|
+
==Attributes
|
|
1532
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1533
|
+
====================================================================================================
|
|
1534
|
+
rightmark : - - X - - - - -
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
Docgenerator::Packages::Scrpage2::Ihead can contain content.
|
|
1538
|
+
|
|
1539
|
+
==Generate an object
|
|
1540
|
+
test = Docgenerator::Packages::Scrpage2::Ihead.new( {
|
|
1541
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1542
|
+
}, 'content')
|
|
1543
|
+
|
|
1544
|
+
Alternative generation
|
|
1545
|
+
test = element(:ihead, {...Attributes...}, 'content' )
|
|
1546
|
+
|
|
1547
|
+
|
|
1548
|
+
==Outputs
|
|
1549
|
+
===Docgenerator::Packages::Scrpage2::Ihead#to_latex
|
|
1550
|
+
\ihead{content}
|
|
1551
|
+
|
|
1552
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Ihead#.to_latex
|
|
1553
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1554
|
+
|
|
1555
|
+
Default:
|
|
1556
|
+
<<START>>\ihead{content}<<END>>
|
|
1557
|
+
|
|
1558
|
+
* Result after Docgenerator::Packages::Scrpage2::Ihead#cr:
|
|
1559
|
+
|
|
1560
|
+
<<START>>\ihead{content}
|
|
1561
|
+
<<END>>
|
|
1562
|
+
|
|
1563
|
+
* Result after Docgenerator::Packages::Scrpage2::Ihead#cR:
|
|
1564
|
+
|
|
1565
|
+
<<START>>\ihead{content}
|
|
1566
|
+
<<END>>
|
|
1567
|
+
|
|
1568
|
+
* Result after Docgenerator::Packages::Scrpage2::Ihead#Cr:
|
|
1569
|
+
|
|
1570
|
+
<<START>>
|
|
1571
|
+
\ihead{content}
|
|
1572
|
+
<<END>>
|
|
1573
|
+
|
|
1574
|
+
* Result after Docgenerator::Packages::Scrpage2::Ihead#CR:
|
|
1575
|
+
|
|
1576
|
+
<<START>>
|
|
1577
|
+
\ihead{content}
|
|
1578
|
+
<<END>>
|
|
1579
|
+
|
|
1580
|
+
===Docgenerator::Packages::Scrpage2::Ihead#to_html
|
|
1581
|
+
<span >content</span>
|
|
1582
|
+
|
|
1583
|
+
* No output routine defined for html - use a dummy
|
|
1584
|
+
===Docgenerator::Packages::Scrpage2::Ihead#to_context
|
|
1585
|
+
\ihead{content}
|
|
1586
|
+
|
|
1587
|
+
* No output routine defined for context - use a dummy
|
|
1588
|
+
===Docgenerator::Packages::Scrpage2::Ihead#to_text
|
|
1589
|
+
content
|
|
1590
|
+
|
|
1591
|
+
* No output routine defined for text - use a dummy
|
|
1592
|
+
===Docgenerator::Packages::Scrpage2::Ihead#to_wiki
|
|
1593
|
+
content
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
* No output routine defined for wiki - use a dummy
|
|
1597
|
+
===Docgenerator::Packages::Scrpage2::Ihead#to_creole
|
|
1598
|
+
content
|
|
1599
|
+
|
|
1600
|
+
|
|
1601
|
+
* No output routine defined for creole - use a dummy
|
|
1602
|
+
=end
|
|
1603
|
+
class Ihead << Docgenerator::Element
|
|
1604
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1605
|
+
end #class Ihead
|
|
1606
|
+
end #module Scrpage2
|
|
1607
|
+
end #module Packages
|
|
1608
|
+
end #module Docgenerator
|
|
1609
|
+
module Docgenerator
|
|
1610
|
+
module Packages
|
|
1611
|
+
module Scrpage2
|
|
1612
|
+
=begin rdoc
|
|
1613
|
+
=Docgenerator::Packages::Scrpage2::Chead
|
|
1614
|
+
|
|
1615
|
+
==Attributes
|
|
1616
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1617
|
+
====================================================================================================
|
|
1618
|
+
rightmark : - - X - - - - -
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
Docgenerator::Packages::Scrpage2::Chead can contain content.
|
|
1622
|
+
|
|
1623
|
+
==Generate an object
|
|
1624
|
+
test = Docgenerator::Packages::Scrpage2::Chead.new( {
|
|
1625
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1626
|
+
}, 'content')
|
|
1627
|
+
|
|
1628
|
+
Alternative generation
|
|
1629
|
+
test = element(:chead, {...Attributes...}, 'content' )
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
==Outputs
|
|
1633
|
+
===Docgenerator::Packages::Scrpage2::Chead#to_latex
|
|
1634
|
+
\chead{content}
|
|
1635
|
+
|
|
1636
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Chead#.to_latex
|
|
1637
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1638
|
+
|
|
1639
|
+
Default:
|
|
1640
|
+
<<START>>\chead{content}<<END>>
|
|
1641
|
+
|
|
1642
|
+
* Result after Docgenerator::Packages::Scrpage2::Chead#cr:
|
|
1643
|
+
|
|
1644
|
+
<<START>>\chead{content}
|
|
1645
|
+
<<END>>
|
|
1646
|
+
|
|
1647
|
+
* Result after Docgenerator::Packages::Scrpage2::Chead#cR:
|
|
1648
|
+
|
|
1649
|
+
<<START>>\chead{content}
|
|
1650
|
+
<<END>>
|
|
1651
|
+
|
|
1652
|
+
* Result after Docgenerator::Packages::Scrpage2::Chead#Cr:
|
|
1653
|
+
|
|
1654
|
+
<<START>>
|
|
1655
|
+
\chead{content}
|
|
1656
|
+
<<END>>
|
|
1657
|
+
|
|
1658
|
+
* Result after Docgenerator::Packages::Scrpage2::Chead#CR:
|
|
1659
|
+
|
|
1660
|
+
<<START>>
|
|
1661
|
+
\chead{content}
|
|
1662
|
+
<<END>>
|
|
1663
|
+
|
|
1664
|
+
===Docgenerator::Packages::Scrpage2::Chead#to_html
|
|
1665
|
+
<span >content</span>
|
|
1666
|
+
|
|
1667
|
+
* No output routine defined for html - use a dummy
|
|
1668
|
+
===Docgenerator::Packages::Scrpage2::Chead#to_context
|
|
1669
|
+
\chead{content}
|
|
1670
|
+
|
|
1671
|
+
* No output routine defined for context - use a dummy
|
|
1672
|
+
===Docgenerator::Packages::Scrpage2::Chead#to_text
|
|
1673
|
+
content
|
|
1674
|
+
|
|
1675
|
+
* No output routine defined for text - use a dummy
|
|
1676
|
+
===Docgenerator::Packages::Scrpage2::Chead#to_wiki
|
|
1677
|
+
content
|
|
1678
|
+
|
|
1679
|
+
|
|
1680
|
+
* No output routine defined for wiki - use a dummy
|
|
1681
|
+
===Docgenerator::Packages::Scrpage2::Chead#to_creole
|
|
1682
|
+
content
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
* No output routine defined for creole - use a dummy
|
|
1686
|
+
=end
|
|
1687
|
+
class Chead << Docgenerator::Element
|
|
1688
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1689
|
+
end #class Chead
|
|
1690
|
+
end #module Scrpage2
|
|
1691
|
+
end #module Packages
|
|
1692
|
+
end #module Docgenerator
|
|
1693
|
+
module Docgenerator
|
|
1694
|
+
module Packages
|
|
1695
|
+
module Scrpage2
|
|
1696
|
+
=begin rdoc
|
|
1697
|
+
=Docgenerator::Packages::Scrpage2::Ohead
|
|
1698
|
+
|
|
1699
|
+
==Attributes
|
|
1700
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1701
|
+
====================================================================================================
|
|
1702
|
+
rightmark : - - X - - - - -
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
Docgenerator::Packages::Scrpage2::Ohead can contain content.
|
|
1706
|
+
|
|
1707
|
+
==Generate an object
|
|
1708
|
+
test = Docgenerator::Packages::Scrpage2::Ohead.new( {
|
|
1709
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1710
|
+
}, 'content')
|
|
1711
|
+
|
|
1712
|
+
Alternative generation
|
|
1713
|
+
test = element(:ohead, {...Attributes...}, 'content' )
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
==Outputs
|
|
1717
|
+
===Docgenerator::Packages::Scrpage2::Ohead#to_latex
|
|
1718
|
+
\ohead{content}
|
|
1719
|
+
|
|
1720
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Ohead#.to_latex
|
|
1721
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1722
|
+
|
|
1723
|
+
Default:
|
|
1724
|
+
<<START>>\ohead{content}<<END>>
|
|
1725
|
+
|
|
1726
|
+
* Result after Docgenerator::Packages::Scrpage2::Ohead#cr:
|
|
1727
|
+
|
|
1728
|
+
<<START>>\ohead{content}
|
|
1729
|
+
<<END>>
|
|
1730
|
+
|
|
1731
|
+
* Result after Docgenerator::Packages::Scrpage2::Ohead#cR:
|
|
1732
|
+
|
|
1733
|
+
<<START>>\ohead{content}
|
|
1734
|
+
<<END>>
|
|
1735
|
+
|
|
1736
|
+
* Result after Docgenerator::Packages::Scrpage2::Ohead#Cr:
|
|
1737
|
+
|
|
1738
|
+
<<START>>
|
|
1739
|
+
\ohead{content}
|
|
1740
|
+
<<END>>
|
|
1741
|
+
|
|
1742
|
+
* Result after Docgenerator::Packages::Scrpage2::Ohead#CR:
|
|
1743
|
+
|
|
1744
|
+
<<START>>
|
|
1745
|
+
\ohead{content}
|
|
1746
|
+
<<END>>
|
|
1747
|
+
|
|
1748
|
+
===Docgenerator::Packages::Scrpage2::Ohead#to_html
|
|
1749
|
+
<span >content</span>
|
|
1750
|
+
|
|
1751
|
+
* No output routine defined for html - use a dummy
|
|
1752
|
+
===Docgenerator::Packages::Scrpage2::Ohead#to_context
|
|
1753
|
+
\ohead{content}
|
|
1754
|
+
|
|
1755
|
+
* No output routine defined for context - use a dummy
|
|
1756
|
+
===Docgenerator::Packages::Scrpage2::Ohead#to_text
|
|
1757
|
+
content
|
|
1758
|
+
|
|
1759
|
+
* No output routine defined for text - use a dummy
|
|
1760
|
+
===Docgenerator::Packages::Scrpage2::Ohead#to_wiki
|
|
1761
|
+
content
|
|
1762
|
+
|
|
1763
|
+
|
|
1764
|
+
* No output routine defined for wiki - use a dummy
|
|
1765
|
+
===Docgenerator::Packages::Scrpage2::Ohead#to_creole
|
|
1766
|
+
content
|
|
1767
|
+
|
|
1768
|
+
|
|
1769
|
+
* No output routine defined for creole - use a dummy
|
|
1770
|
+
=end
|
|
1771
|
+
class Ohead << Docgenerator::Element
|
|
1772
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1773
|
+
end #class Ohead
|
|
1774
|
+
end #module Scrpage2
|
|
1775
|
+
end #module Packages
|
|
1776
|
+
end #module Docgenerator
|
|
1777
|
+
module Docgenerator
|
|
1778
|
+
module Packages
|
|
1779
|
+
module Scrpage2
|
|
1780
|
+
=begin rdoc
|
|
1781
|
+
=Docgenerator::Packages::Scrpage2::Ifoot
|
|
1782
|
+
|
|
1783
|
+
==Attributes
|
|
1784
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1785
|
+
====================================================================================================
|
|
1786
|
+
rightmark : - - X - - - - -
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
Docgenerator::Packages::Scrpage2::Ifoot can contain content.
|
|
1790
|
+
|
|
1791
|
+
==Generate an object
|
|
1792
|
+
test = Docgenerator::Packages::Scrpage2::Ifoot.new( {
|
|
1793
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1794
|
+
}, 'content')
|
|
1795
|
+
|
|
1796
|
+
Alternative generation
|
|
1797
|
+
test = element(:ifoot, {...Attributes...}, 'content' )
|
|
1798
|
+
|
|
1799
|
+
|
|
1800
|
+
==Outputs
|
|
1801
|
+
===Docgenerator::Packages::Scrpage2::Ifoot#to_latex
|
|
1802
|
+
\ifoot{content}
|
|
1803
|
+
|
|
1804
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Ifoot#.to_latex
|
|
1805
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1806
|
+
|
|
1807
|
+
Default:
|
|
1808
|
+
<<START>>\ifoot{content}<<END>>
|
|
1809
|
+
|
|
1810
|
+
* Result after Docgenerator::Packages::Scrpage2::Ifoot#cr:
|
|
1811
|
+
|
|
1812
|
+
<<START>>\ifoot{content}
|
|
1813
|
+
<<END>>
|
|
1814
|
+
|
|
1815
|
+
* Result after Docgenerator::Packages::Scrpage2::Ifoot#cR:
|
|
1816
|
+
|
|
1817
|
+
<<START>>\ifoot{content}
|
|
1818
|
+
<<END>>
|
|
1819
|
+
|
|
1820
|
+
* Result after Docgenerator::Packages::Scrpage2::Ifoot#Cr:
|
|
1821
|
+
|
|
1822
|
+
<<START>>
|
|
1823
|
+
\ifoot{content}
|
|
1824
|
+
<<END>>
|
|
1825
|
+
|
|
1826
|
+
* Result after Docgenerator::Packages::Scrpage2::Ifoot#CR:
|
|
1827
|
+
|
|
1828
|
+
<<START>>
|
|
1829
|
+
\ifoot{content}
|
|
1830
|
+
<<END>>
|
|
1831
|
+
|
|
1832
|
+
===Docgenerator::Packages::Scrpage2::Ifoot#to_html
|
|
1833
|
+
<span >content</span>
|
|
1834
|
+
|
|
1835
|
+
* No output routine defined for html - use a dummy
|
|
1836
|
+
===Docgenerator::Packages::Scrpage2::Ifoot#to_context
|
|
1837
|
+
\ifoot{content}
|
|
1838
|
+
|
|
1839
|
+
* No output routine defined for context - use a dummy
|
|
1840
|
+
===Docgenerator::Packages::Scrpage2::Ifoot#to_text
|
|
1841
|
+
content
|
|
1842
|
+
|
|
1843
|
+
* No output routine defined for text - use a dummy
|
|
1844
|
+
===Docgenerator::Packages::Scrpage2::Ifoot#to_wiki
|
|
1845
|
+
content
|
|
1846
|
+
|
|
1847
|
+
|
|
1848
|
+
* No output routine defined for wiki - use a dummy
|
|
1849
|
+
===Docgenerator::Packages::Scrpage2::Ifoot#to_creole
|
|
1850
|
+
content
|
|
1851
|
+
|
|
1852
|
+
|
|
1853
|
+
* No output routine defined for creole - use a dummy
|
|
1854
|
+
=end
|
|
1855
|
+
class Ifoot << Docgenerator::Element
|
|
1856
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1857
|
+
end #class Ifoot
|
|
1858
|
+
end #module Scrpage2
|
|
1859
|
+
end #module Packages
|
|
1860
|
+
end #module Docgenerator
|
|
1861
|
+
module Docgenerator
|
|
1862
|
+
module Packages
|
|
1863
|
+
module Scrpage2
|
|
1864
|
+
=begin rdoc
|
|
1865
|
+
=Docgenerator::Packages::Scrpage2::Cfoot
|
|
1866
|
+
|
|
1867
|
+
==Attributes
|
|
1868
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1869
|
+
====================================================================================================
|
|
1870
|
+
rightmark : - - X - - - - -
|
|
1871
|
+
|
|
1872
|
+
|
|
1873
|
+
Docgenerator::Packages::Scrpage2::Cfoot can contain content.
|
|
1874
|
+
|
|
1875
|
+
==Generate an object
|
|
1876
|
+
test = Docgenerator::Packages::Scrpage2::Cfoot.new( {
|
|
1877
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1878
|
+
}, 'content')
|
|
1879
|
+
|
|
1880
|
+
Alternative generation
|
|
1881
|
+
test = element(:cfoot, {...Attributes...}, 'content' )
|
|
1882
|
+
|
|
1883
|
+
|
|
1884
|
+
==Outputs
|
|
1885
|
+
===Docgenerator::Packages::Scrpage2::Cfoot#to_latex
|
|
1886
|
+
\cfoot{content}
|
|
1887
|
+
|
|
1888
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Cfoot#.to_latex
|
|
1889
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1890
|
+
|
|
1891
|
+
Default:
|
|
1892
|
+
<<START>>\cfoot{content}<<END>>
|
|
1893
|
+
|
|
1894
|
+
* Result after Docgenerator::Packages::Scrpage2::Cfoot#cr:
|
|
1895
|
+
|
|
1896
|
+
<<START>>\cfoot{content}
|
|
1897
|
+
<<END>>
|
|
1898
|
+
|
|
1899
|
+
* Result after Docgenerator::Packages::Scrpage2::Cfoot#cR:
|
|
1900
|
+
|
|
1901
|
+
<<START>>\cfoot{content}
|
|
1902
|
+
<<END>>
|
|
1903
|
+
|
|
1904
|
+
* Result after Docgenerator::Packages::Scrpage2::Cfoot#Cr:
|
|
1905
|
+
|
|
1906
|
+
<<START>>
|
|
1907
|
+
\cfoot{content}
|
|
1908
|
+
<<END>>
|
|
1909
|
+
|
|
1910
|
+
* Result after Docgenerator::Packages::Scrpage2::Cfoot#CR:
|
|
1911
|
+
|
|
1912
|
+
<<START>>
|
|
1913
|
+
\cfoot{content}
|
|
1914
|
+
<<END>>
|
|
1915
|
+
|
|
1916
|
+
===Docgenerator::Packages::Scrpage2::Cfoot#to_html
|
|
1917
|
+
<span >content</span>
|
|
1918
|
+
|
|
1919
|
+
* No output routine defined for html - use a dummy
|
|
1920
|
+
===Docgenerator::Packages::Scrpage2::Cfoot#to_context
|
|
1921
|
+
\cfoot{content}
|
|
1922
|
+
|
|
1923
|
+
* No output routine defined for context - use a dummy
|
|
1924
|
+
===Docgenerator::Packages::Scrpage2::Cfoot#to_text
|
|
1925
|
+
content
|
|
1926
|
+
|
|
1927
|
+
* No output routine defined for text - use a dummy
|
|
1928
|
+
===Docgenerator::Packages::Scrpage2::Cfoot#to_wiki
|
|
1929
|
+
content
|
|
1930
|
+
|
|
1931
|
+
|
|
1932
|
+
* No output routine defined for wiki - use a dummy
|
|
1933
|
+
===Docgenerator::Packages::Scrpage2::Cfoot#to_creole
|
|
1934
|
+
content
|
|
1935
|
+
|
|
1936
|
+
|
|
1937
|
+
* No output routine defined for creole - use a dummy
|
|
1938
|
+
=end
|
|
1939
|
+
class Cfoot << Docgenerator::Element
|
|
1940
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1941
|
+
end #class Cfoot
|
|
1942
|
+
end #module Scrpage2
|
|
1943
|
+
end #module Packages
|
|
1944
|
+
end #module Docgenerator
|
|
1945
|
+
module Docgenerator
|
|
1946
|
+
module Packages
|
|
1947
|
+
module Scrpage2
|
|
1948
|
+
=begin rdoc
|
|
1949
|
+
=Docgenerator::Packages::Scrpage2::Ofoot
|
|
1950
|
+
|
|
1951
|
+
==Attributes
|
|
1952
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1953
|
+
====================================================================================================
|
|
1954
|
+
rightmark : - - X - - - - -
|
|
1955
|
+
|
|
1956
|
+
|
|
1957
|
+
Docgenerator::Packages::Scrpage2::Ofoot can contain content.
|
|
1958
|
+
|
|
1959
|
+
==Generate an object
|
|
1960
|
+
test = Docgenerator::Packages::Scrpage2::Ofoot.new( {
|
|
1961
|
+
#:rightmark => <<value>>, % optional, values: [String]
|
|
1962
|
+
}, 'content')
|
|
1963
|
+
|
|
1964
|
+
Alternative generation
|
|
1965
|
+
test = element(:ofoot, {...Attributes...}, 'content' )
|
|
1966
|
+
|
|
1967
|
+
|
|
1968
|
+
==Outputs
|
|
1969
|
+
===Docgenerator::Packages::Scrpage2::Ofoot#to_latex
|
|
1970
|
+
\ofoot{content}
|
|
1971
|
+
|
|
1972
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Packages::Scrpage2::Ofoot#.to_latex
|
|
1973
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1974
|
+
|
|
1975
|
+
Default:
|
|
1976
|
+
<<START>>\ofoot{content}<<END>>
|
|
1977
|
+
|
|
1978
|
+
* Result after Docgenerator::Packages::Scrpage2::Ofoot#cr:
|
|
1979
|
+
|
|
1980
|
+
<<START>>\ofoot{content}
|
|
1981
|
+
<<END>>
|
|
1982
|
+
|
|
1983
|
+
* Result after Docgenerator::Packages::Scrpage2::Ofoot#cR:
|
|
1984
|
+
|
|
1985
|
+
<<START>>\ofoot{content}
|
|
1986
|
+
<<END>>
|
|
1987
|
+
|
|
1988
|
+
* Result after Docgenerator::Packages::Scrpage2::Ofoot#Cr:
|
|
1989
|
+
|
|
1990
|
+
<<START>>
|
|
1991
|
+
\ofoot{content}
|
|
1992
|
+
<<END>>
|
|
1993
|
+
|
|
1994
|
+
* Result after Docgenerator::Packages::Scrpage2::Ofoot#CR:
|
|
1995
|
+
|
|
1996
|
+
<<START>>
|
|
1997
|
+
\ofoot{content}
|
|
1998
|
+
<<END>>
|
|
1999
|
+
|
|
2000
|
+
===Docgenerator::Packages::Scrpage2::Ofoot#to_html
|
|
2001
|
+
<span >content</span>
|
|
2002
|
+
|
|
2003
|
+
* No output routine defined for html - use a dummy
|
|
2004
|
+
===Docgenerator::Packages::Scrpage2::Ofoot#to_context
|
|
2005
|
+
\ofoot{content}
|
|
2006
|
+
|
|
2007
|
+
* No output routine defined for context - use a dummy
|
|
2008
|
+
===Docgenerator::Packages::Scrpage2::Ofoot#to_text
|
|
2009
|
+
content
|
|
2010
|
+
|
|
2011
|
+
* No output routine defined for text - use a dummy
|
|
2012
|
+
===Docgenerator::Packages::Scrpage2::Ofoot#to_wiki
|
|
2013
|
+
content
|
|
2014
|
+
|
|
2015
|
+
|
|
2016
|
+
* No output routine defined for wiki - use a dummy
|
|
2017
|
+
===Docgenerator::Packages::Scrpage2::Ofoot#to_creole
|
|
2018
|
+
content
|
|
2019
|
+
|
|
2020
|
+
|
|
2021
|
+
* No output routine defined for creole - use a dummy
|
|
2022
|
+
=end
|
|
2023
|
+
class Ofoot << Docgenerator::Element
|
|
2024
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
2025
|
+
end #class Ofoot
|
|
2026
|
+
end #module Scrpage2
|
|
2027
|
+
end #module Packages
|
|
2028
|
+
end #module Docgenerator
|