diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-tipps-und-tricks/poem.sty')
-rw-r--r-- | Master/texmf-dist/doc/latex/latex-tipps-und-tricks/poem.sty | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/poem.sty b/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/poem.sty deleted file mode 100644 index 7958cb1a35e..00000000000 --- a/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/poem.sty +++ /dev/null @@ -1,39 +0,0 @@ -% poem.sty -% Gedichte mit Verzeichniseintrag -\RequirePackage{ifthen} - -% Der Zaehler. -\newcounter{poemcnt} -\renewcommand{\thepoemcnt}{\Roman{poemcnt}} - -% Formatiert die Eintraege im Verzeichnis. -\newcommand{\l@poem}[2] - {{\renewcommand{\numberline}[1] - {\makebox[1cm][l]{##1}} - \itshape #1\dotfill#2}\\} - -% Erzeugt die Eintraege im Verzeichnis und druckt -% den Gedichtkopf in einem bestimmen Format. -\newenvironment{poem}[1] - {\refstepcounter{poemcnt} - \addcontentsline{lop}{poem} - {\protect\numberline{\thepoemcnt} #1} - \begin{verse} - \flushleft{\itshape\thepoemcnt{} #1} - } - {\end{verse}} - -% Erzeugt das Verzeichnis. -\newcommand{\lopname}{Die Gedichte} -\newcommand{\tableofpoems} - {\setboolean{@restonecol}{false} - \ifthenelse{\boolean{@twocolumn}} - {\setboolean{@restonecol}{true}\onecolumn} - {} - \chapter*{\lopname\@mkboth{\lopname}{\lopname}} - {\setlength{\parindent}{0pt} - \@starttoc{lop}} - \ifthenelse{\boolean{@restonecol}} - {\twocolumn} - {} - } |