docgenerator 1.0.2 → 1.0.4

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.
Files changed (84) hide show
  1. data/lib/docgenerator.rb +27 -1
  2. data/lib/docgenerator_css.rb +26 -23
  3. data/lib/docgenerator_document.rb +78 -16
  4. data/lib/docgenerator_element.rb +10 -25
  5. data/lib/docgenerator_elements.rb +78 -13
  6. data/lib/templates/docgenerator_template_css.rb +73 -0
  7. data/lib/wiki2doc/wiki2docgenerator.rb +12 -19
  8. data/unittest/expected/beamer_01_article.tex +13 -0
  9. data/unittest/expected/beamer_01_attachment.tex +15 -0
  10. data/unittest/expected/beamer_01_doc.html +13 -0
  11. data/unittest/expected/beamer_01_doc.tex +18 -0
  12. data/unittest/expected/beamer_01_notes_only.tex +13 -0
  13. data/unittest/expected/beamer_01_notes_onlyslideswithnotes.tex +13 -0
  14. data/unittest/expected/beamer_01_notes_show.tex +13 -0
  15. data/unittest/expected/beamer_01_presentation.tex +13 -0
  16. data/unittest/expected/beamer_02_doc.html +29 -0
  17. data/unittest/expected/beamer_02_doc.tex +34 -0
  18. data/unittest/expected/beamer_block.html +1 -0
  19. data/unittest/expected/beamer_block.latex +1 -0
  20. data/unittest/expected/beamer_doc_fragile_doc.tex +33 -0
  21. data/unittest/expected/beamer_doc_key_doc.html +20 -0
  22. data/unittest/expected/beamer_doc_key_doc.tex +29 -0
  23. data/unittest/expected/beamer_doc_note_doc.html +30 -0
  24. data/unittest/expected/beamer_doc_note_doc.tex +37 -0
  25. data/unittest/expected/beamer_doc_pic_bottom_doc.html +24 -0
  26. data/unittest/expected/beamer_doc_pic_doc.html +24 -0
  27. data/unittest/expected/beamer_doc_pic_doc.tex +28 -0
  28. data/unittest/expected/beamer_doc_pic_left_doc.html +24 -0
  29. data/unittest/expected/beamer_doc_pic_left_doc.tex +28 -0
  30. data/unittest/expected/beamer_doc_pic_ratio_doc.tex +29 -0
  31. data/unittest/expected/beamer_doc_pic_right_doc.html +24 -0
  32. data/unittest/expected/beamer_doc_pic_right_doc.tex +28 -0
  33. data/unittest/expected/beamer_doc_pic_top_doc.html +24 -0
  34. data/unittest/expected/beamer_frame.html +5 -0
  35. data/unittest/expected/beamer_frame.tex +11 -0
  36. data/unittest/expected/beamer_frame_fragile.tex +7 -0
  37. data/unittest/expected/beamer_frame_id.html +1 -0
  38. data/unittest/expected/beamer_frame_id.tex +4 -0
  39. data/unittest/expected/beamer_framepic.html +5 -0
  40. data/unittest/expected/beamer_framepic.latex +1 -0
  41. data/unittest/expected/beamer_framepic_link.html +5 -0
  42. data/unittest/expected/beamer_framepic_link.latex +1 -0
  43. data/unittest/expected/beamer_frametitle.html +1 -0
  44. data/unittest/expected/beamer_frametitle.latex +1 -0
  45. data/unittest/expected/beamer_note.html +1 -0
  46. data/unittest/expected/{test_beamer_note.latex → beamer_note.latex} +0 -0
  47. data/unittest/expected/css_collection.html +9 -0
  48. data/unittest/expected/css_collection_anonym.html +9 -0
  49. data/unittest/expected/test_css.css +1 -1
  50. data/unittest/expected/test_css2.css +1 -1
  51. data/unittest/expected/test_document_toc.html +14 -0
  52. data/unittest/expected/test_document_toc_article.latex +64 -0
  53. data/unittest/expected/test_document_toc_deep.html +18 -0
  54. data/unittest/expected/test_document_toc_deep.latex +35 -0
  55. data/unittest/expected/test_document_toc_deep_1.html +6 -0
  56. data/unittest/expected/test_document_toc_deep_1.latex +11 -0
  57. data/unittest/expected/test_document_toc_deep_4.html +24 -0
  58. data/unittest/expected/test_document_toc_deep_4.latex +47 -0
  59. data/unittest/expected/test_document_toc_deep_err.html +34 -0
  60. data/unittest/expected/test_document_toc_deep_err.latex +37 -0
  61. data/unittest/expected/test_document_toc_deep_err.log +4 -0
  62. data/unittest/expected/test_document_toc_deep_single.html +30 -0
  63. data/unittest/expected/test_document_toc_html.html +34 -0
  64. data/unittest/expected/test_document_toc_single.html +14 -0
  65. data/unittest/expected/test_document_toc_single.latex +27 -0
  66. data/unittest/expected/test_document_toc_single_pre.html +16 -0
  67. data/unittest/expected/test_document_toc_single_pre.latex +35 -0
  68. data/unittest/expected/test_document_toc_single_pre2.html +15 -0
  69. data/unittest/expected/test_document_toc_single_pre2.latex +35 -0
  70. data/unittest/expected/test_html_css.html +1 -1
  71. data/unittest/expected/test_tabular.html +2 -2
  72. data/unittest/expected/test_wiki_amazon.html +2 -2
  73. data/unittest/expected/test_wiki_link.html +6 -6
  74. data/unittest/expected/test_wiki_link.latex +7 -4
  75. data/unittest/expected/test_wiki_link.wiki +6 -1
  76. data/unittest/expected/test_wiki_picture.html +3 -3
  77. data/unittest/expected/toc_css.css +15 -0
  78. data/unittest/test_docgenerator.rb +24 -1
  79. data/unittest/unittest_docgenerator.rb +166 -37
  80. data/unittest/unittest_wiki2doc.rb +9 -1
  81. metadata +75 -8
  82. data/unittest/expected/test_beamer_note.html +0 -1
  83. data/unittest/expected/test_beamer_note.text +0 -1
  84. data/unittest/expected/test_beamer_note.wiki +0 -1
@@ -0,0 +1,18 @@
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
+ % ----------------------------------------------------------------
@@ -0,0 +1,13 @@
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
+
@@ -0,0 +1,13 @@
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
+
@@ -0,0 +1,13 @@
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
+
@@ -0,0 +1,13 @@
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
+
@@ -0,0 +1,29 @@
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="author" content="Knut Lickert">
9
+ <meta name="creation-date" content="2008-05-15">
10
+ <meta name = "shorttitle" content = "Short title" />
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>
@@ -0,0 +1,34 @@
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
+ % ----------------------------------------------------------------
@@ -0,0 +1 @@
1
+ <span >Block</span>
@@ -0,0 +1 @@
1
+ \begin{block}{}Block\end{block}
@@ -0,0 +1,33 @@
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
+ % ----------------------------------------------------------------
@@ -0,0 +1,20 @@
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="author" content="Knut Lickert">
9
+ <meta name="creation-date" content="2008-05-15">
10
+ <meta name = "shorttitle" content = "Short title" />
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>
@@ -0,0 +1,29 @@
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
+ % ----------------------------------------------------------------
@@ -0,0 +1,30 @@
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="author" content="Knut Lickert">
9
+ <meta name="creation-date" content="2008-05-15">
10
+ <meta name = "shorttitle" content = "Short title" />
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>
@@ -0,0 +1,37 @@
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
+ % ----------------------------------------------------------------
@@ -0,0 +1,24 @@
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="author" content="Knut Lickert">
9
+ <meta name="creation-date" content="2008-05-15">
10
+ <meta name = "shorttitle" content = "Short title" />
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>
@@ -0,0 +1,24 @@
1
+ <!--
2
+ <<prefix>>
3
+ -->
4
+ <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
+ <html>
6
+ <head >
7
+ <title>Presentation with picture</title>
8
+ <meta name="author" content="Knut Lickert">
9
+ <meta name="creation-date" content="2008-05-15">
10
+ <meta name = "shorttitle" content = "Short title" />
11
+ </head>
12
+ <body >
13
+ <div class = "frame" >
14
+ <p class = "frametitle">Frame with picture</p>
15
+
16
+ <div align = "center" >
17
+ <img src = "test.jpg" />
18
+ </div>
19
+ <p >remark: With a picture
20
+ </p>
21
+ </div>
22
+ <br clear = "all" />
23
+ </body>
24
+ </html>
@@ -0,0 +1,28 @@
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]{Presentation with picture}
10
+ \hypersetup{pdftitle={Presentation with picture}}
11
+ \author{Knut Lickert}\hypersetup{pdfauthor={Knut Lickert}}
12
+ \date{2008-05-15}
13
+
14
+ % ----------------------------------------------------------------
15
+ \begin{document}
16
+
17
+ \begin{frame}
18
+ \frametitle{Frame with picture}
19
+ \framePic{test.jpg}{
20
+
21
+ remark: With a picture
22
+
23
+
24
+ }
25
+ \end{frame}
26
+
27
+ \end{document}
28
+ % ----------------------------------------------------------------
@@ -0,0 +1,24 @@
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="author" content="Knut Lickert">
9
+ <meta name="creation-date" content="2008-05-15">
10
+ <meta name = "shorttitle" content = "Short title" />
11
+ </head>
12
+ <body >
13
+ <div class = "frame" >
14
+ <p class = "frametitle">Title</p>
15
+
16
+ <div style = "float: left;padding: 10px;" align = "center" >
17
+ <img src = "test.jpg" />
18
+ </div>
19
+ <p >remark: With a picture
20
+ </p>
21
+ </div>
22
+ <br clear = "all" />
23
+ </body>
24
+ </html>
@@ -0,0 +1,28 @@
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
+ \framePic{test.jpg}{
20
+
21
+ remark: With a picture
22
+
23
+
24
+ }
25
+ \end{frame}
26
+
27
+ \end{document}
28
+ % ----------------------------------------------------------------
@@ -0,0 +1,29 @@
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]{Picture with different ratio}
10
+ \hypersetup{pdftitle={Picture with different ratio}}
11
+ \author{Knut Lickert}\hypersetup{pdfauthor={Knut Lickert}}
12
+ \date{2008-05-15}
13
+
14
+ % ----------------------------------------------------------------
15
+ \begin{document}
16
+
17
+ \begin{frame}
18
+ \framepicratio{0.25}{0.5}
19
+ \frametitle{Frame with different ratio}
20
+ \framePic{test.jpg}{
21
+
22
+ remark: Bildgr��e und Textgr��e im Verh�ltnis zur Textbreite.
23
+
24
+
25
+ }
26
+ \end{frame}
27
+
28
+ \end{document}
29
+ % ----------------------------------------------------------------
@@ -0,0 +1,24 @@
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="author" content="Knut Lickert">
9
+ <meta name="creation-date" content="2008-05-15">
10
+ <meta name = "shorttitle" content = "Short title" />
11
+ </head>
12
+ <body >
13
+ <div class = "frame" >
14
+ <p class = "frametitle">Title</p>
15
+
16
+ <div style = "float: right;padding: 10px;" align = "center" >
17
+ <img src = "test.jpg" />
18
+ </div>
19
+ <p >remark: With a picture
20
+ </p>
21
+ </div>
22
+ <br clear = "all" />
23
+ </body>
24
+ </html>
@@ -0,0 +1,28 @@
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
+ \framePic[right]{test.jpg}{
20
+
21
+ remark: With a picture
22
+
23
+
24
+ }
25
+ \end{frame}
26
+
27
+ \end{document}
28
+ % ----------------------------------------------------------------
@@ -0,0 +1,24 @@
1
+ <!--
2
+ <<prefix>>
3
+ -->
4
+ <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
5
+ <html>
6
+ <head >
7
+ <title>Picture on top</title>
8
+ <meta name="author" content="Knut Lickert">
9
+ <meta name="creation-date" content="2008-05-15">
10
+ <meta name = "shorttitle" content = "Short title" />
11
+ </head>
12
+ <body >
13
+ <div class = "frame" >
14
+ <p class = "frametitle">Picture on top</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>
@@ -0,0 +1,5 @@
1
+ <div class = "frame" ><p class = "frametitle">Titel</p><ul >
2
+ <li >top 1</li>
3
+ <li >top 2</li>
4
+ </ul>
5
+ </div>
@@ -0,0 +1,11 @@
1
+ \begin{frame}
2
+ \frametitle{Titel}
3
+ \begin{itemize}
4
+
5
+ \item top 1
6
+
7
+ \item top 2
8
+ \end{itemize}
9
+
10
+
11
+ \end{frame}
@@ -0,0 +1,7 @@
1
+ \begin{frame}[fragile]
2
+ \frametitle{Titel}
3
+ \begin{verbatim}
4
+ Verbatim requires a fragile flag
5
+ \end{verbatim}
6
+
7
+ \end{frame}
@@ -0,0 +1 @@
1
+ <div id = "frame-id" class = "frame" >content</div>
@@ -0,0 +1,4 @@
1
+ \begin{frame}
2
+ \label{frame-id}\hypertarget{frame-id}{}
3
+ content
4
+ \end{frame}
@@ -0,0 +1,5 @@
1
+
2
+ <div align = "center" >
3
+ <img src = "test.jpg" />
4
+ </div>
5
+ description
@@ -0,0 +1 @@
1
+ \framePic{test.jpg}{description}
@@ -0,0 +1,5 @@
1
+
2
+ <div align = "center" >
3
+ <img src = "test.jpg" />
4
+ </div>
5
+ description
@@ -0,0 +1 @@
1
+ \framePic{test.jpg}[linktopic]{description}
@@ -0,0 +1 @@
1
+ <p class = "frametitle">Title</p>
@@ -0,0 +1 @@
1
+ \frametitle{Title}
@@ -0,0 +1 @@
1
+ <p class = "note">Notiz</p>
@@ -0,0 +1,9 @@
1
+ <style type="text/css">
2
+ /*
3
+ CSS to test
4
+ */
5
+ div.test {
6
+ font-size: xx-small;
7
+ font-weight: normal;
8
+ }
9
+ </style>
@@ -0,0 +1,9 @@
1
+ <style type="text/css">
2
+ /*
3
+ CSS to test
4
+ */
5
+ div.test {
6
+ font-size: xx-small;
7
+ font-weight: normal;
8
+ }
9
+ </style>
@@ -1 +1 @@
1
- background-color: blue;color: red
1
+ background-color: blue;color: red;
@@ -1 +1 @@
1
- background-color: blue;color: red;float: right
1
+ background-color: blue;color: red;float: right;
@@ -0,0 +1,14 @@
1
+ <div id = "toc" >
2
+ <ul >
3
+ <li ><a href = "test.html/#toc1" >Abschnitt 1</a></li>
4
+ <ul >
5
+ <li ><a href = "test.html/#toc2" >Abschnitt 1.1</a></li>
6
+ <li ><a href = "test.html/#toc3" >Abschnitt 1.2</a></li>
7
+ </ul>
8
+ <li ><a href = "test.html/#toc4" >Abschnitt 2</a></li>
9
+ <ul >
10
+ <li ><a href = "test.html/#toc5" >Abschnitt 2.1</a></li>
11
+ </ul>
12
+ <li ><a href = "test.html/#sect3" >Abschnitt 3</a></li>
13
+ </ul>
14
+ </div>