File: index.html

package info (click to toggle)
wiki2beamer 0.10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 480 kB
  • sloc: python: 1,215; xml: 345; makefile: 108
file content (95 lines) | stat: -rw-r--r-- 2,918 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<html>
<head>
    <title>wiki2beamer home</title>
    <meta http-equiv="expires" content="0"><!-- disable caching -->
</head>

<body>
<h1>wiki2beamer</h1>
<p>collaborative slide editing made easy</p>
<p>wiki2beamer converts a simple wiki-like syntax to complex LaTeX beamer code.
It's written in python and should run on windows and all *nix platforms.
Why collaborative? Because you can use it with version control systems.
Afraid to loose some LaTeX powers? Don't worry: you can always fall back to
plain LaTeX as wiki2beamer is just a preprocessor.</p>
<p>wiki2beamer: Try it with your colleagues! :)</p>

<h2>Syntax</h2>
<p>This is how it looks like:</p>

<table border="1">
<tr>
    <td>wiki2beamer code input</td>
    <td>LaTeX code output</td>
</tr>
<tr>
   <td>
<pre>
==== A simple frame ====

* with a funky
* bullet list
*# and two
*# numbered sub-items
</pre>
    </td>

    <td>
<pre>
\begin{frame}
 \frametitle{A simple frame}

  \begin{itemize}
    \item with a funky
    \item bullet list
      \begin{enumerate}
        \item and two
    \item numbered sub-items
      \end{enumerate}
  \end{itemize}

\end{frame}
</pre>
    </td>
</tr>
</table>
<p>Which do you like more? And there is even more cool stuff inside: animations, code listings, text formatting, ... (see the <a href="wiki2beamer-example.pdf">example pdf</a>).</p>


<h2>Links</h2>
<ul>
    <li><a href="https://wiki2beamer.github.io">This page</a></li>
    <li>the <a href="wiki2beamer.html">wiki2beamer man-page</a> (reference documentation)</li>
    <li><a href="wiki2beamer-example.pdf">wiki2beamer example presentation (PDF)</a></li>
    <li><a href="https://github.com/wiki2beamer">GitHub wiki2beamer organization</a></li>
</ul>

<h2>Contribute</h2>
<p>
If you want to improve wiki2beamer, don't be afraid.  It's not that complicated
and we happily accept pull-requests.  Just make your changes, and submit a
pull-request on GitHub.  If you want to make things go faster, you can also document your
changes in the man-page sources (asciidoc) and write some unittests so we don't
have to do that for you.
</p>


<h2>Distributions</h2>
<p>wiki2beamer has native packages in the following distributions:</p>
<ul>
    <li>Debian: <a href="http://packages.debian.org/squeeze/wiki2beamer">testing</a> and <a href="http://packages.debian.org/experimental/wiki2beamer">experimental</a></li>
    <li>Ubuntu: <a href="http://packages.ubuntu.com/maverick/wiki2beamer">universe</a></li>
    <li>Gentoo: <a href="http://packages.gentoo.org/package/app-text/wiki2beamer">app-text/wiki2beamer</a></li>
  <li>Fedora: <a href="https://admin.fedoraproject.org/pkgdb/acls/name/wiki2beamer">F17 and later</a></li>
</ul>

<h2>Dependencies/Compatibility</h2>
<p>
wiki2beamer only requires a working python interpreter.
It's supposed to run on CPython 2.3 up to 3.x.
If it doesn't, it's a bug that should be filed in the bugtracker.
</p>

</body>

</html>