Add <target> to one more testcase (see r8206).
[docutils.git] / sandbox / verse-writer / README.txt
blob900c635883bebb79ee484ce52a7908411678cd1c
1 verse writer
2 ============
4 :Date: 2007-01-04
6 rst2verse is a LaTeX-writer to transfer single file poems into 
7 LaTeX. The generated files are assumed to be included into a master 
8 LaTeX document.
10 Usage :
12   rst2vers.py input output
14 simple transformation from a reStructured text into a LaTeX 
15 verse poem.
17 reSt input ::
19   All My Exes
20   ---------------
22   | your dogs, your daughters
23   | or the state of your kitchen.
24   | 
25   | I will live in the secure orbit
27 output ::
29   \poemtitle{All My Exes}
31   \begin{verse}
32   your dogs, your daughters \\
33   or the state of your kitchen. \\
34   
35   I will live in the secure orbit \\
37   \end{verse}
39 verse commands
40 --------------
42 * ``\poemtitle{TITEL}``  poems title. Similar to ``\section`` commands
43   this is included in a table of contents.
44 * ``\\``   new line in verse.
45 * ``\\!``  end of last line in a stanza. Adds a separating line.
46 * ``\vin`` indent line by 1,5 em.
48 Open issues
49 -----------
51 * Inlcude into the standard latex-writer to be able to set poems with
52   surrounding text. This would require a option to use verse for 
53   literal-blocks and to use poemtitle if the section contains only
54   a literal-block (poem).
55 * Only one ``\vin`` level is supported.