docgenerator 1.1.1 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/examples/docgenerator_example.rb +34 -17
- data/examples/docgenerator_example_footnote.rb +82 -61
- data/examples/docgenerator_example_list.rb +24 -18
- data/examples/docgenerator_example_restrictions.rb +17 -27
- data/examples/docgenerator_example_tabular.rb +20 -20
- data/examples/docgenerator_example_tripfalls.rb +28 -20
- data/examples/results/readme +1 -0
- data/examples/results_expected/docgenerator_example.html +39 -0
- data/examples/results_expected/docgenerator_example.pdf +0 -0
- data/examples/results_expected/docgenerator_example.tex +56 -0
- data/examples/results_expected/docgenerator_example_footnote.html +40 -0
- data/examples/results_expected/docgenerator_example_footnote.pdf +0 -0
- data/examples/results_expected/docgenerator_example_footnote.tex +50 -0
- data/examples/results_expected/docgenerator_example_list.html +18 -0
- data/examples/results_expected/docgenerator_example_list.pdf +0 -0
- data/examples/results_expected/docgenerator_example_list.tex +46 -0
- data/examples/results_expected/docgenerator_example_restrictions.html +22 -0
- data/examples/results_expected/docgenerator_example_restrictions.pdf +0 -0
- data/examples/results_expected/docgenerator_example_restrictions.tex +31 -0
- data/examples/results_expected/docgenerator_example_tabular.html +37 -0
- data/examples/results_expected/docgenerator_example_tabular.pdf +0 -0
- data/examples/results_expected/docgenerator_example_tabular.tex +41 -0
- data/examples/results_expected/docgenerator_example_tripfalls.html +27 -0
- data/examples/results_expected/docgenerator_example_tripfalls.pdf +0 -0
- data/examples/results_expected/docgenerator_example_tripfalls.tex +31 -0
- data/lib/creole/creole2doc.rb +291 -140
- data/lib/creole/creole_inclusion_and_plugins.rb +142 -39
- data/lib/creole/creole_placeholder.rb +92 -30
- data/lib/creole/creole_tabular.rb +119 -20
- data/lib/docgenerator.rb +209 -118
- data/lib/{docgenerator_attribute.rb → docgenerator/attribute.rb} +2 -1
- data/lib/{docgenerator_characters.rb → docgenerator/characters.rb} +75 -6
- data/lib/{docgenerator_css.rb → docgenerator/css.rb} +0 -0
- data/lib/docgenerator/document.rb +588 -0
- data/lib/{docgenerator_element.rb → docgenerator/element.rb} +52 -80
- data/lib/{docgenerator_elements.rb → docgenerator/elements.rb} +43 -17
- data/lib/{docgenerator_environments.rb → docgenerator/environments.rb} +20 -6
- data/lib/{docgenerator_footnote.rb → docgenerator/footnote.rb} +22 -18
- data/lib/{docgenerator_lists.rb → docgenerator/lists.rb} +17 -1
- data/lib/{docgenerator_sections.rb → docgenerator/sections.rb} +9 -1
- data/lib/docgenerator/standard.rb +81 -0
- data/lib/{docgenerator_tabular.rb → docgenerator/tabular.rb} +9 -5
- data/lib/packages/docgenerator_listings.rb +9 -5
- data/lib/packages/docgenerator_pdfpages.rb +17 -11
- data/lib/packages/docgenerator_url.rb +0 -2
- data/lib/templates/docgenerator_template.rb +66 -29
- data/lib/templates/docgenerator_template.yaml +18 -0
- data/lib/wiki2doc/wiki2docgenerator.rb +6 -2
- data/readme.rd +132 -0
- data/unittest/expected/test_document_usepackage_undefined.log +2 -0
- data/unittest/expected/test_enumerate.context +4 -0
- data/unittest/expected/test_footnote.html +4 -4
- data/unittest/expected/test_footnote.latex +4 -4
- data/unittest/expected/test_footnote_group.html +6 -6
- data/unittest/expected/test_footnote_group.latex +6 -6
- data/unittest/expected/test_href.html +2 -2
- data/unittest/expected/test_href.latex +2 -2
- data/unittest/expected/test_href.text +2 -2
- data/unittest/expected/test_itemize.context +4 -0
- data/unittest/expected/test_runtex.stdout +3 -0
- data/unittest/expected/test_runtex_2.stdout +3 -0
- data/unittest/expected/test_section.context +20 -0
- data/unittest/expected/test_tabular.html +2 -2
- data/unittest/expected/test_verbatim.html +3 -0
- data/unittest/expected/test_verbatim.latex +4 -0
- data/unittest/expected/test_verbatim_array.html +1 -0
- data/unittest/expected/test_verbatim_array.latex +2 -0
- data/unittest/expected_creole/test_creole_characters_all.html +12 -5
- data/unittest/expected_creole/test_creole_characters_all.latex +20 -6
- data/unittest/expected_creole/test_creole_comment.context +11 -0
- data/unittest/expected_creole/test_creole_comment.creole +12 -0
- data/unittest/expected_creole/test_creole_comment.html +9 -0
- data/unittest/expected_creole/test_creole_comment.latex +11 -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 +4 -4
- data/unittest/expected_creole/test_creole_ignore.html +3 -0
- data/unittest/expected_creole/test_creole_ignore.latex +4 -0
- data/unittest/expected_creole/test_creole_ignore.text +2 -0
- data/unittest/expected_creole/test_creole_input.normsource +12 -12
- data/unittest/expected_creole/test_creole_input_file_simple.html +15 -0
- data/unittest/expected_creole/test_creole_input_file_simple_readlines.html +15 -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.creole +4 -0
- data/unittest/expected_creole/test_creole_links_implicit_end.html +3 -0
- data/unittest/expected_creole/test_creole_links_implicit_end.latex +4 -0
- data/unittest/expected_creole/test_creole_list_ul.normsource +42 -42
- data/unittest/expected_creole/test_creole_mix_titles_list.html +10 -0
- data/unittest/expected_creole/test_creole_mix_titles_list.latex +18 -0
- data/unittest/expected_creole/test_creole_mix_titles_list.text +12 -0
- data/unittest/expected_creole/test_creole_paragraphs.normsource +15 -15
- data/unittest/expected_creole/test_creole_pictures_css.html +4 -1
- data/unittest/expected_creole/test_creole_pictures_css.latex +5 -1
- data/unittest/expected_creole/test_creole_pictures_longdesc.html +3 -0
- data/unittest/expected_creole/test_creole_pictures_width.html +3 -0
- data/unittest/expected_creole/test_creole_pictures_width.latex +4 -0
- data/unittest/expected_creole/test_creole_short_html.html +3 -0
- data/unittest/expected_creole/test_creole_short_html.latex +4 -0
- data/unittest/expected_creole/test_creole_short_html.text +2 -0
- data/unittest/expected_creole/test_creole_shy.creole +6 -0
- data/unittest/expected_creole/test_creole_shy.html +6 -0
- data/unittest/expected_creole/test_creole_shy.latex +8 -0
- data/unittest/expected_creole/test_creole_shy.text +4 -0
- data/unittest/expected_creole/test_creole_tabular_with_cell_option.html +20 -0
- data/unittest/expected_creole/test_creole_toc.html +3 -1
- data/unittest/expected_creole/test_creole_toc.latex +1 -1
- data/unittest/expected_creole/test_creole_toc.text +1 -1
- data/unittest/expected_creole/test_creole_toc_level.html +7 -0
- data/unittest/expected_creole/test_creole_toc_level.latex +10 -0
- data/unittest/expected_creole/test_creole_toc_level.text +3 -0
- data/unittest/expected_creole/test_creole_toc_level_text.html +8 -0
- data/unittest/expected_creole/test_creole_toc_level_text.latex +9 -0
- data/unittest/expected_creole/test_creole_verbatim.html +1 -1
- data/unittest/expected_creole/test_creole_verbatim.latex +1 -1
- data/unittest/expected_creole/test_creole_verbatim.text +1 -1
- data/unittest/expected_creole/test_creole_verbatim_inline.html +1 -1
- data/unittest/expected_creole/test_creole_verbatim_inline.latex +1 -1
- data/unittest/expected_wiki/test_wiki_description.html +5 -5
- data/unittest/expected_wiki/test_wiki_description.latex +5 -5
- data/unittest/expected_wiki/test_wiki_description.text +5 -5
- data/unittest/expected_wiki/test_wiki_description.wiki +5 -5
- data/unittest/test_rakefile_docgenerator.rb +43 -0
- data/unittest/unittest_creole2doc.rb +415 -27
- data/unittest/unittest_docgenerator.rb +256 -23
- data/unittest/unittest_docgenerator_runtex.rb +83 -0
- data/unittest/unittest_versions.rb +44 -0
- data/unittest/unittest_wiki2doc.rb +28 -27
- metadata +473 -106
- data/lib/docgenerator_document.rb +0 -525
- data/lib/packages/docgenerator_beamer.rb +0 -253
- data/lib/yaml2presentation/yaml2presentation.rb +0 -1091
- data/unittest/expected/beamer_01_article.tex +0 -13
- data/unittest/expected/beamer_01_attachment.tex +0 -15
- data/unittest/expected/beamer_01_doc.html +0 -13
- data/unittest/expected/beamer_01_doc.tex +0 -18
- data/unittest/expected/beamer_01_notes_only.tex +0 -13
- data/unittest/expected/beamer_01_notes_onlyslideswithnotes.tex +0 -13
- data/unittest/expected/beamer_01_notes_show.tex +0 -13
- data/unittest/expected/beamer_01_presentation.tex +0 -13
- data/unittest/expected/beamer_02_doc.html +0 -29
- data/unittest/expected/beamer_02_doc.tex +0 -34
- data/unittest/expected/beamer_block.html +0 -1
- data/unittest/expected/beamer_block.latex +0 -1
- data/unittest/expected/beamer_doc_fragile_doc.tex +0 -33
- data/unittest/expected/beamer_doc_html_overview_with_detailpic_and_text_doc.html +0 -34
- data/unittest/expected/beamer_doc_html_overview_with_detailpic_doc.html +0 -34
- data/unittest/expected/beamer_doc_key_doc.html +0 -20
- data/unittest/expected/beamer_doc_key_doc.tex +0 -29
- data/unittest/expected/beamer_doc_note_doc.html +0 -30
- data/unittest/expected/beamer_doc_note_doc.tex +0 -37
- data/unittest/expected/beamer_doc_pic_bottom_doc.html +0 -24
- data/unittest/expected/beamer_doc_pic_doc.html +0 -24
- data/unittest/expected/beamer_doc_pic_doc.tex +0 -28
- data/unittest/expected/beamer_doc_pic_left_doc.html +0 -24
- data/unittest/expected/beamer_doc_pic_left_doc.tex +0 -28
- data/unittest/expected/beamer_doc_pic_ratio_doc.tex +0 -29
- data/unittest/expected/beamer_doc_pic_right_doc.html +0 -24
- data/unittest/expected/beamer_doc_pic_right_doc.tex +0 -28
- data/unittest/expected/beamer_doc_pic_top_doc.html +0 -24
- data/unittest/expected/beamer_frame.html +0 -5
- data/unittest/expected/beamer_frame.tex +0 -11
- data/unittest/expected/beamer_frame_fragile.tex +0 -7
- data/unittest/expected/beamer_frame_id.html +0 -1
- data/unittest/expected/beamer_frame_id.tex +0 -4
- data/unittest/expected/beamer_framepic.html +0 -5
- data/unittest/expected/beamer_framepic.latex +0 -1
- data/unittest/expected/beamer_framepic_link.html +0 -5
- data/unittest/expected/beamer_framepic_link.latex +0 -1
- data/unittest/expected/beamer_frametitle.html +0 -1
- data/unittest/expected/beamer_frametitle.latex +0 -1
- data/unittest/expected/beamer_note.html +0 -1
- data/unittest/expected/beamer_note.latex +0 -1
- data/unittest/expected_privat/test_creole_test_document.html +0 -6
- data/unittest/expected_wiki/test_wiki_amazon.html +0 -10
- data/unittest/expected_wiki/test_wiki_link.log +0 -3
- data/unittest/test_docgenerator.rb +0 -107
- 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>
|