docgenerator 1.1.1 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. data/examples/docgenerator_example.rb +34 -17
  2. data/examples/docgenerator_example_footnote.rb +82 -61
  3. data/examples/docgenerator_example_list.rb +24 -18
  4. data/examples/docgenerator_example_restrictions.rb +17 -27
  5. data/examples/docgenerator_example_tabular.rb +20 -20
  6. data/examples/docgenerator_example_tripfalls.rb +28 -20
  7. data/examples/results/readme +1 -0
  8. data/examples/results_expected/docgenerator_example.html +39 -0
  9. data/examples/results_expected/docgenerator_example.pdf +0 -0
  10. data/examples/results_expected/docgenerator_example.tex +56 -0
  11. data/examples/results_expected/docgenerator_example_footnote.html +40 -0
  12. data/examples/results_expected/docgenerator_example_footnote.pdf +0 -0
  13. data/examples/results_expected/docgenerator_example_footnote.tex +50 -0
  14. data/examples/results_expected/docgenerator_example_list.html +18 -0
  15. data/examples/results_expected/docgenerator_example_list.pdf +0 -0
  16. data/examples/results_expected/docgenerator_example_list.tex +46 -0
  17. data/examples/results_expected/docgenerator_example_restrictions.html +22 -0
  18. data/examples/results_expected/docgenerator_example_restrictions.pdf +0 -0
  19. data/examples/results_expected/docgenerator_example_restrictions.tex +31 -0
  20. data/examples/results_expected/docgenerator_example_tabular.html +37 -0
  21. data/examples/results_expected/docgenerator_example_tabular.pdf +0 -0
  22. data/examples/results_expected/docgenerator_example_tabular.tex +41 -0
  23. data/examples/results_expected/docgenerator_example_tripfalls.html +27 -0
  24. data/examples/results_expected/docgenerator_example_tripfalls.pdf +0 -0
  25. data/examples/results_expected/docgenerator_example_tripfalls.tex +31 -0
  26. data/lib/creole/creole2doc.rb +291 -140
  27. data/lib/creole/creole_inclusion_and_plugins.rb +142 -39
  28. data/lib/creole/creole_placeholder.rb +92 -30
  29. data/lib/creole/creole_tabular.rb +119 -20
  30. data/lib/docgenerator.rb +209 -118
  31. data/lib/{docgenerator_attribute.rb → docgenerator/attribute.rb} +2 -1
  32. data/lib/{docgenerator_characters.rb → docgenerator/characters.rb} +75 -6
  33. data/lib/{docgenerator_css.rb → docgenerator/css.rb} +0 -0
  34. data/lib/docgenerator/document.rb +588 -0
  35. data/lib/{docgenerator_element.rb → docgenerator/element.rb} +52 -80
  36. data/lib/{docgenerator_elements.rb → docgenerator/elements.rb} +43 -17
  37. data/lib/{docgenerator_environments.rb → docgenerator/environments.rb} +20 -6
  38. data/lib/{docgenerator_footnote.rb → docgenerator/footnote.rb} +22 -18
  39. data/lib/{docgenerator_lists.rb → docgenerator/lists.rb} +17 -1
  40. data/lib/{docgenerator_sections.rb → docgenerator/sections.rb} +9 -1
  41. data/lib/docgenerator/standard.rb +81 -0
  42. data/lib/{docgenerator_tabular.rb → docgenerator/tabular.rb} +9 -5
  43. data/lib/packages/docgenerator_listings.rb +9 -5
  44. data/lib/packages/docgenerator_pdfpages.rb +17 -11
  45. data/lib/packages/docgenerator_url.rb +0 -2
  46. data/lib/templates/docgenerator_template.rb +66 -29
  47. data/lib/templates/docgenerator_template.yaml +18 -0
  48. data/lib/wiki2doc/wiki2docgenerator.rb +6 -2
  49. data/readme.rd +132 -0
  50. data/unittest/expected/test_document_usepackage_undefined.log +2 -0
  51. data/unittest/expected/test_enumerate.context +4 -0
  52. data/unittest/expected/test_footnote.html +4 -4
  53. data/unittest/expected/test_footnote.latex +4 -4
  54. data/unittest/expected/test_footnote_group.html +6 -6
  55. data/unittest/expected/test_footnote_group.latex +6 -6
  56. data/unittest/expected/test_href.html +2 -2
  57. data/unittest/expected/test_href.latex +2 -2
  58. data/unittest/expected/test_href.text +2 -2
  59. data/unittest/expected/test_itemize.context +4 -0
  60. data/unittest/expected/test_runtex.stdout +3 -0
  61. data/unittest/expected/test_runtex_2.stdout +3 -0
  62. data/unittest/expected/test_section.context +20 -0
  63. data/unittest/expected/test_tabular.html +2 -2
  64. data/unittest/expected/test_verbatim.html +3 -0
  65. data/unittest/expected/test_verbatim.latex +4 -0
  66. data/unittest/expected/test_verbatim_array.html +1 -0
  67. data/unittest/expected/test_verbatim_array.latex +2 -0
  68. data/unittest/expected_creole/test_creole_characters_all.html +12 -5
  69. data/unittest/expected_creole/test_creole_characters_all.latex +20 -6
  70. data/unittest/expected_creole/test_creole_comment.context +11 -0
  71. data/unittest/expected_creole/test_creole_comment.creole +12 -0
  72. data/unittest/expected_creole/test_creole_comment.html +9 -0
  73. data/unittest/expected_creole/test_creole_comment.latex +11 -0
  74. data/unittest/expected_creole/test_creole_creole1.0test.html +3 -3
  75. data/unittest/expected_creole/test_creole_creole1.0test.latex +3 -3
  76. data/unittest/expected_creole/test_creole_creole1.0test.text +4 -4
  77. data/unittest/expected_creole/test_creole_ignore.html +3 -0
  78. data/unittest/expected_creole/test_creole_ignore.latex +4 -0
  79. data/unittest/expected_creole/test_creole_ignore.text +2 -0
  80. data/unittest/expected_creole/test_creole_input.normsource +12 -12
  81. data/unittest/expected_creole/test_creole_input_file_simple.html +15 -0
  82. data/unittest/expected_creole/test_creole_input_file_simple_readlines.html +15 -0
  83. data/unittest/expected_creole/test_creole_links_external_implicit.html +2 -2
  84. data/unittest/expected_creole/test_creole_links_external_implicit.latex +2 -2
  85. data/unittest/expected_creole/test_creole_links_external_implicit.text +2 -2
  86. data/unittest/expected_creole/test_creole_links_implicit_end.creole +4 -0
  87. data/unittest/expected_creole/test_creole_links_implicit_end.html +3 -0
  88. data/unittest/expected_creole/test_creole_links_implicit_end.latex +4 -0
  89. data/unittest/expected_creole/test_creole_list_ul.normsource +42 -42
  90. data/unittest/expected_creole/test_creole_mix_titles_list.html +10 -0
  91. data/unittest/expected_creole/test_creole_mix_titles_list.latex +18 -0
  92. data/unittest/expected_creole/test_creole_mix_titles_list.text +12 -0
  93. data/unittest/expected_creole/test_creole_paragraphs.normsource +15 -15
  94. data/unittest/expected_creole/test_creole_pictures_css.html +4 -1
  95. data/unittest/expected_creole/test_creole_pictures_css.latex +5 -1
  96. data/unittest/expected_creole/test_creole_pictures_longdesc.html +3 -0
  97. data/unittest/expected_creole/test_creole_pictures_width.html +3 -0
  98. data/unittest/expected_creole/test_creole_pictures_width.latex +4 -0
  99. data/unittest/expected_creole/test_creole_short_html.html +3 -0
  100. data/unittest/expected_creole/test_creole_short_html.latex +4 -0
  101. data/unittest/expected_creole/test_creole_short_html.text +2 -0
  102. data/unittest/expected_creole/test_creole_shy.creole +6 -0
  103. data/unittest/expected_creole/test_creole_shy.html +6 -0
  104. data/unittest/expected_creole/test_creole_shy.latex +8 -0
  105. data/unittest/expected_creole/test_creole_shy.text +4 -0
  106. data/unittest/expected_creole/test_creole_tabular_with_cell_option.html +20 -0
  107. data/unittest/expected_creole/test_creole_toc.html +3 -1
  108. data/unittest/expected_creole/test_creole_toc.latex +1 -1
  109. data/unittest/expected_creole/test_creole_toc.text +1 -1
  110. data/unittest/expected_creole/test_creole_toc_level.html +7 -0
  111. data/unittest/expected_creole/test_creole_toc_level.latex +10 -0
  112. data/unittest/expected_creole/test_creole_toc_level.text +3 -0
  113. data/unittest/expected_creole/test_creole_toc_level_text.html +8 -0
  114. data/unittest/expected_creole/test_creole_toc_level_text.latex +9 -0
  115. data/unittest/expected_creole/test_creole_verbatim.html +1 -1
  116. data/unittest/expected_creole/test_creole_verbatim.latex +1 -1
  117. data/unittest/expected_creole/test_creole_verbatim.text +1 -1
  118. data/unittest/expected_creole/test_creole_verbatim_inline.html +1 -1
  119. data/unittest/expected_creole/test_creole_verbatim_inline.latex +1 -1
  120. data/unittest/expected_wiki/test_wiki_description.html +5 -5
  121. data/unittest/expected_wiki/test_wiki_description.latex +5 -5
  122. data/unittest/expected_wiki/test_wiki_description.text +5 -5
  123. data/unittest/expected_wiki/test_wiki_description.wiki +5 -5
  124. data/unittest/test_rakefile_docgenerator.rb +43 -0
  125. data/unittest/unittest_creole2doc.rb +415 -27
  126. data/unittest/unittest_docgenerator.rb +256 -23
  127. data/unittest/unittest_docgenerator_runtex.rb +83 -0
  128. data/unittest/unittest_versions.rb +44 -0
  129. data/unittest/unittest_wiki2doc.rb +28 -27
  130. metadata +473 -106
  131. data/lib/docgenerator_document.rb +0 -525
  132. data/lib/packages/docgenerator_beamer.rb +0 -253
  133. data/lib/yaml2presentation/yaml2presentation.rb +0 -1091
  134. data/unittest/expected/beamer_01_article.tex +0 -13
  135. data/unittest/expected/beamer_01_attachment.tex +0 -15
  136. data/unittest/expected/beamer_01_doc.html +0 -13
  137. data/unittest/expected/beamer_01_doc.tex +0 -18
  138. data/unittest/expected/beamer_01_notes_only.tex +0 -13
  139. data/unittest/expected/beamer_01_notes_onlyslideswithnotes.tex +0 -13
  140. data/unittest/expected/beamer_01_notes_show.tex +0 -13
  141. data/unittest/expected/beamer_01_presentation.tex +0 -13
  142. data/unittest/expected/beamer_02_doc.html +0 -29
  143. data/unittest/expected/beamer_02_doc.tex +0 -34
  144. data/unittest/expected/beamer_block.html +0 -1
  145. data/unittest/expected/beamer_block.latex +0 -1
  146. data/unittest/expected/beamer_doc_fragile_doc.tex +0 -33
  147. data/unittest/expected/beamer_doc_html_overview_with_detailpic_and_text_doc.html +0 -34
  148. data/unittest/expected/beamer_doc_html_overview_with_detailpic_doc.html +0 -34
  149. data/unittest/expected/beamer_doc_key_doc.html +0 -20
  150. data/unittest/expected/beamer_doc_key_doc.tex +0 -29
  151. data/unittest/expected/beamer_doc_note_doc.html +0 -30
  152. data/unittest/expected/beamer_doc_note_doc.tex +0 -37
  153. data/unittest/expected/beamer_doc_pic_bottom_doc.html +0 -24
  154. data/unittest/expected/beamer_doc_pic_doc.html +0 -24
  155. data/unittest/expected/beamer_doc_pic_doc.tex +0 -28
  156. data/unittest/expected/beamer_doc_pic_left_doc.html +0 -24
  157. data/unittest/expected/beamer_doc_pic_left_doc.tex +0 -28
  158. data/unittest/expected/beamer_doc_pic_ratio_doc.tex +0 -29
  159. data/unittest/expected/beamer_doc_pic_right_doc.html +0 -24
  160. data/unittest/expected/beamer_doc_pic_right_doc.tex +0 -28
  161. data/unittest/expected/beamer_doc_pic_top_doc.html +0 -24
  162. data/unittest/expected/beamer_frame.html +0 -5
  163. data/unittest/expected/beamer_frame.tex +0 -11
  164. data/unittest/expected/beamer_frame_fragile.tex +0 -7
  165. data/unittest/expected/beamer_frame_id.html +0 -1
  166. data/unittest/expected/beamer_frame_id.tex +0 -4
  167. data/unittest/expected/beamer_framepic.html +0 -5
  168. data/unittest/expected/beamer_framepic.latex +0 -1
  169. data/unittest/expected/beamer_framepic_link.html +0 -5
  170. data/unittest/expected/beamer_framepic_link.latex +0 -1
  171. data/unittest/expected/beamer_frametitle.html +0 -1
  172. data/unittest/expected/beamer_frametitle.latex +0 -1
  173. data/unittest/expected/beamer_note.html +0 -1
  174. data/unittest/expected/beamer_note.latex +0 -1
  175. data/unittest/expected_privat/test_creole_test_document.html +0 -6
  176. data/unittest/expected_wiki/test_wiki_amazon.html +0 -10
  177. data/unittest/expected_wiki/test_wiki_link.log +0 -3
  178. data/unittest/test_docgenerator.rb +0 -107
  179. data/unittest/unittest_yaml2pres.rb +0 -336
@@ -1,13 +0,0 @@
1
- <<prefix>>
2
- \documentclass[class=scrartcl,ngerman]{beamer}
3
- \usepackage{babel}
4
- \usepackage{beamerbasearticle}
5
- \usepackage[article]{beamertool}
6
- \usepackage[ansinew]{inputenc}
7
- \usepackage{hyperref}
8
- % ----------------------------------------------------------------
9
-
10
- %BibTeX-Entry>
11
- %BibTeX-Entry<
12
- \input{beamer_01_article.tex}
13
-
@@ -1,15 +0,0 @@
1
- <<prefix>>
2
- % ----------------------------------------------------------------
3
-
4
- %BibTeX-Entry>
5
- %BibTeX-Entry<
6
-
7
- % ----------------------------------------------------------------
8
-
9
- %
10
- % Big Pictures / Plainframes
11
- \section{Enlarged Pictures}%\frame{\sectionpage}
12
-
13
- \usebackgroundtemplate{}
14
-
15
- % ----------------------------------------------------------------
@@ -1,13 +0,0 @@
1
- <!--
2
- <<prefix>>
3
- -->
4
- <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
- <html>
6
- <head >
7
- <title>Title</title>
8
- <meta name = "shorttitle" content = "Short title" />
9
- <meta name="author" content="Knut Lickert">
10
- <meta name="creation-date" content="2008-05-15">
11
- </head>
12
- <body ></body>
13
- </html>
@@ -1,18 +0,0 @@
1
- <<prefix>>
2
- % ----------------------------------------------------------------
3
- % For Usage with Beamer
4
- % ----------------------------------------------------------------
5
- \bgroup
6
- %BibTeX-Entry>
7
- %BibTeX-Entry<
8
- \egroup \subtitle{Subtitle}
9
- \title[Short title]{Title}
10
- \hypersetup{pdftitle={Title}}
11
- \author{Knut Lickert}\hypersetup{pdfauthor={Knut Lickert}}
12
- \date{2008-05-15}
13
-
14
- % ----------------------------------------------------------------
15
- \begin{document}
16
-
17
- \end{document}
18
- % ----------------------------------------------------------------
@@ -1,13 +0,0 @@
1
- <<prefix>>
2
- \documentclass[notes=only,ngerman]{beamer}
3
- \usepackage{beamerthemetree}
4
- \usepackage{babel}
5
- \usepackage[ansinew]{inputenc}
6
- \usepackage{beamertool}
7
- \usepackage{hyperref}
8
- % ----------------------------------------------------------------
9
-
10
- %BibTeX-Entry>
11
- %BibTeX-Entry<
12
- \input{beamer_01.tex}
13
-
@@ -1,13 +0,0 @@
1
- <<prefix>>
2
- \documentclass[notes=onlyslideswithnotes,ngerman]{beamer}
3
- \usepackage{beamerthemetree}
4
- \usepackage{babel}
5
- \usepackage[ansinew]{inputenc}
6
- \usepackage{beamertool}
7
- \usepackage{hyperref}
8
- % ----------------------------------------------------------------
9
-
10
- %BibTeX-Entry>
11
- %BibTeX-Entry<
12
- \input{beamer_01.tex}
13
-
@@ -1,13 +0,0 @@
1
- <<prefix>>
2
- \documentclass[notes=show,ngerman]{beamer}
3
- \usepackage{beamerthemetree}
4
- \usepackage{babel}
5
- \usepackage[ansinew]{inputenc}
6
- \usepackage{beamertool}
7
- \usepackage{hyperref}
8
- % ----------------------------------------------------------------
9
-
10
- %BibTeX-Entry>
11
- %BibTeX-Entry<
12
- \input{beamer_01.tex}
13
-
@@ -1,13 +0,0 @@
1
- <<prefix>>
2
- \documentclass[ngerman]{beamer}
3
- \usepackage{beamerthemetree}
4
- \usepackage{babel}
5
- \usepackage[ansinew]{inputenc}
6
- \usepackage{beamertool}
7
- \usepackage{hyperref}
8
- % ----------------------------------------------------------------
9
-
10
- %BibTeX-Entry>
11
- %BibTeX-Entry<
12
- \input{beamer_01_presentation.tex}
13
-
@@ -1,29 +0,0 @@
1
- <!--
2
- <<prefix>>
3
- -->
4
- <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
- <html>
6
- <head >
7
- <title>Title</title>
8
- <meta name = "shorttitle" content = "Short title" />
9
- <meta name="author" content="Knut Lickert">
10
- <meta name="creation-date" content="2008-05-15">
11
- </head>
12
- <body ><h1 >Sectiontitle</h1>
13
- <h2 >Subectiontitle</h2>
14
-
15
- <div class = "frame" >
16
- <p class = "frametitle">Title</p>
17
-
18
- <ul >
19
- <li >
20
- Top 1
21
- </li>
22
- <li >
23
- Top 2
24
- </li>
25
- </ul>
26
- </div>
27
- <br clear = "all" />
28
- </body>
29
- </html>
@@ -1,34 +0,0 @@
1
- <<prefix>>
2
- % ----------------------------------------------------------------
3
- % For Usage with Beamer
4
- % ----------------------------------------------------------------
5
- \bgroup
6
- %BibTeX-Entry>
7
- %BibTeX-Entry<
8
- \egroup \subtitle{Subtitle}
9
- \title[Short title]{Title}
10
- \hypersetup{pdftitle={Title}}
11
- \author{Knut Lickert}\hypersetup{pdfauthor={Knut Lickert}}
12
- \date{2008-05-15}
13
-
14
- % ----------------------------------------------------------------
15
- \begin{document}
16
- \section{Sectiontitle}
17
- \subsection{Subectiontitle}
18
-
19
- \begin{frame}
20
- \frametitle{Title}
21
-
22
-
23
- \begin{itemize}
24
-
25
- \item Top 1
26
-
27
- \item Top 2
28
- \end{itemize}
29
-
30
-
31
- \end{frame}
32
-
33
- \end{document}
34
- % ----------------------------------------------------------------
@@ -1 +0,0 @@
1
- <span >Block</span>
@@ -1 +0,0 @@
1
- \begin{block}{}Block\end{block}
@@ -1,33 +0,0 @@
1
- <<prefix>>
2
- % ----------------------------------------------------------------
3
- % For Usage with Beamer
4
- % ----------------------------------------------------------------
5
- \bgroup
6
- %BibTeX-Entry>
7
- %BibTeX-Entry<
8
- \egroup \subtitle{Subtitle}
9
- \title[Short title]{Title}
10
- \hypersetup{pdftitle={Title}}
11
- \author{Knut Lickert}\hypersetup{pdfauthor={Knut Lickert}}
12
- \date{2008-05-15}
13
-
14
- % ----------------------------------------------------------------
15
- \begin{document}
16
-
17
- \begin{frame}[fragile]
18
- \frametitle{Title}
19
-
20
-
21
- remark:
22
-
23
-
24
-
25
- \begin{verbatim}
26
- Verbatim require fragile flag
27
- \end{verbatim}
28
-
29
-
30
- \end{frame}
31
-
32
- \end{document}
33
- % ----------------------------------------------------------------
@@ -1,34 +0,0 @@
1
- <!--
2
- <<prefix>>
3
- -->
4
- <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
- <html>
6
- <head >
7
- <title>Title</title>
8
- <meta name = "shorttitle" content = "Short title" />
9
- <meta name="author" content="Knut Lickert">
10
- <meta name="creation-date" content="2008-05-15">
11
- </head>
12
- <body >
13
- <div class = "frame" >
14
- <p class = "frametitle">Title</p>
15
-
16
- <div align = "center" >
17
- <img src = "test.png" />
18
- </div>
19
- <p >remark: You can make notes
20
- </p>
21
- <p class = "note">
22
- <ul >
23
- <li >
24
- This is a note
25
- </li>
26
- <li >
27
- Notes are wiki-enabled
28
- </li>
29
- </ul>
30
- </p>
31
- </div>
32
- <br clear = "all" />
33
- </body>
34
- </html>
@@ -1,34 +0,0 @@
1
- <!--
2
- <<prefix>>
3
- -->
4
- <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
- <html>
6
- <head >
7
- <title>Title</title>
8
- <meta name = "shorttitle" content = "Short title" />
9
- <meta name="author" content="Knut Lickert">
10
- <meta name="creation-date" content="2008-05-15">
11
- </head>
12
- <body >
13
- <div class = "frame" >
14
- <p class = "frametitle">Title</p>
15
-
16
- <div align = "center" >
17
- <img src = "test.png" />
18
- </div>
19
- <p >remark: You can make notes
20
- </p>
21
- <p class = "note">
22
- <ul >
23
- <li >
24
- This is a note
25
- </li>
26
- <li >
27
- Notes are wiki-enabled
28
- </li>
29
- </ul>
30
- </p>
31
- </div>
32
- <br clear = "all" />
33
- </body>
34
- </html>
@@ -1,20 +0,0 @@
1
- <!--
2
- <<prefix>>
3
- -->
4
- <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
- <html>
6
- <head >
7
- <title>Title</title>
8
- <meta name = "shorttitle" content = "Short title" />
9
- <meta name="author" content="Knut Lickert">
10
- <meta name="creation-date" content="2008-05-15">
11
- </head>
12
- <body >
13
- <div id = "key" class = "frame" >
14
- <p class = "frametitle">Title</p>
15
- <p >remark: Ids can be defined
16
- </p>
17
- </div>
18
- <br clear = "all" />
19
- </body>
20
- </html>
@@ -1,29 +0,0 @@
1
- <<prefix>>
2
- % ----------------------------------------------------------------
3
- % For Usage with Beamer
4
- % ----------------------------------------------------------------
5
- \bgroup
6
- %BibTeX-Entry>
7
- %BibTeX-Entry<
8
- \egroup \subtitle{Subtitle}
9
- \title[Short title]{Title}
10
- \hypersetup{pdftitle={Title}}
11
- \author{Knut Lickert}\hypersetup{pdfauthor={Knut Lickert}}
12
- \date{2008-05-15}
13
-
14
- % ----------------------------------------------------------------
15
- \begin{document}
16
-
17
- \begin{frame}
18
- \label{key}\hypertarget{key}{}
19
- \frametitle{Title}
20
-
21
-
22
- remark: Ids can be defined
23
-
24
-
25
-
26
- \end{frame}
27
-
28
- \end{document}
29
- % ----------------------------------------------------------------
@@ -1,30 +0,0 @@
1
- <!--
2
- <<prefix>>
3
- -->
4
- <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
- <html>
6
- <head >
7
- <title>Title</title>
8
- <meta name = "shorttitle" content = "Short title" />
9
- <meta name="author" content="Knut Lickert">
10
- <meta name="creation-date" content="2008-05-15">
11
- </head>
12
- <body >
13
- <div class = "frame" >
14
- <p class = "frametitle">Title</p>
15
- <p >remark: You can make notes
16
- </p>
17
- <p class = "note">
18
- <ul >
19
- <li >
20
- This is a note
21
- </li>
22
- <li >
23
- Notes are wiki-enabled
24
- </li>
25
- </ul>
26
- </p>
27
- </div>
28
- <br clear = "all" />
29
- </body>
30
- </html>
@@ -1,37 +0,0 @@
1
- <<prefix>>
2
- % ----------------------------------------------------------------
3
- % For Usage with Beamer
4
- % ----------------------------------------------------------------
5
- \bgroup
6
- %BibTeX-Entry>
7
- %BibTeX-Entry<
8
- \egroup \subtitle{Subtitle}
9
- \title[Short title]{Title}
10
- \hypersetup{pdftitle={Title}}
11
- \author{Knut Lickert}\hypersetup{pdfauthor={Knut Lickert}}
12
- \date{2008-05-15}
13
-
14
- % ----------------------------------------------------------------
15
- \begin{document}
16
-
17
- \begin{frame}
18
- \frametitle{Title}
19
-
20
-
21
- remark: You can make notes
22
-
23
-
24
- \note{
25
-
26
- \begin{itemize}
27
-
28
- \item This is a note
29
-
30
- \item Notes are wiki-enabled
31
- \end{itemize}
32
-
33
- }
34
- \end{frame}
35
-
36
- \end{document}
37
- % ----------------------------------------------------------------
@@ -1,24 +0,0 @@
1
- <!--
2
- <<prefix>>
3
- -->
4
- <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
- <html>
6
- <head >
7
- <title>Picture at bottom</title>
8
- <meta name = "shorttitle" content = "Short title" />
9
- <meta name="author" content="Knut Lickert">
10
- <meta name="creation-date" content="2008-05-15">
11
- </head>
12
- <body >
13
- <div class = "frame" >
14
- <p class = "frametitle">Picture at bottom</p>
15
-
16
- <div style = "float: none;" align = "center" >
17
- <img src = "test.jpg" />
18
- </div>
19
- <p >remark: Not for TeX
20
- </p>
21
- </div>
22
- <br clear = "all" />
23
- </body>
24
- </html>