vogel
29-03-2005, 11:40
Hallo,
Ich habe folgenden Quellcode :
%------------Preamble-------------------------------------------------------------
\documentclass[a4paper,10pt]{book}
\usepackage{supertabular}
\usepackage{ifthen}
%defining the style of a heading
\newcommand{\headingone}{\bf \Large}
\newcommand{\headingtwo}{\bf \large}
\newcommand{\headingthree}{\bf \normalsize}
%variables for the headings in the table
\newtoks\firstheading
\newtoks\secondheading
\newtoks\thirdheading
%command to make a heading and to set the variables above
%gets the name of the heading
\newcommand{\SETheading}[2]{
\ifthenelse{1=#1}{ \global\firstheading={#2}
\headingone \the\firstheading\\
\tablehead{\headingone \the\firstheading\\}
}{}
\ifthenelse{2=#1}{
\global\secondheading={#2}
\headingtwo\the\secondheading\\
\tablehead{\headingone\the\firstheading\\
\headingtwo\the\secondheading\\}
}{}
\ifthenelse{3=#1}{
\global\thirdheading={#2}
& \headingthree\the\thirdheading\\
\tablehead{\headingone\the\firstheading\\
\headingtwo\the\secondheading
& \headingthree\the\thirdheading\\}
}{}
}
\newcommand{\ENDheading}[1]{
\ifthenelse{1=#1}{\tablehead{}
}{}
\ifthenelse{2=#1}{\tablehead{\headingone\the\first heading\\ }
}{}
\ifthenelse{3=#1}{\tablehead{\headingone \the\firstheading\\
\headingtwo \the\secondheading \\ }
}{}
}
%---------------------------------------------------------------------------
\begin{document}
\begin{supertabular}{|l|l|}
\SETheading{1}{EDV-Erfahrung}
\SETheading{2}{Betriebssysteme}
\SETheading{3}{Unix-Derivate}
\ENDheading{2}
Hallo1\\
Hallo2\\
Hallo3\\
Hallo4\\
Hallo5\\
Hallo6\\
Hallo7\\
Hallo8\\
\end{supertabular}
\end{document}
++++++++++++++++++++++++++++++++++++++++++++++++++ ++
SETheading{Nummer}{Titel} liefert eine Überschrift der Größe "Nummer".
Das ist auch gut so.
Was mich stört ist daß nach jeder Überschrift der Nachfolgende Text nach innen eingezogen wird, obwohl nicht gewollt.
Was mache ich nur falsch ?
Ich habe folgenden Quellcode :
%------------Preamble-------------------------------------------------------------
\documentclass[a4paper,10pt]{book}
\usepackage{supertabular}
\usepackage{ifthen}
%defining the style of a heading
\newcommand{\headingone}{\bf \Large}
\newcommand{\headingtwo}{\bf \large}
\newcommand{\headingthree}{\bf \normalsize}
%variables for the headings in the table
\newtoks\firstheading
\newtoks\secondheading
\newtoks\thirdheading
%command to make a heading and to set the variables above
%gets the name of the heading
\newcommand{\SETheading}[2]{
\ifthenelse{1=#1}{ \global\firstheading={#2}
\headingone \the\firstheading\\
\tablehead{\headingone \the\firstheading\\}
}{}
\ifthenelse{2=#1}{
\global\secondheading={#2}
\headingtwo\the\secondheading\\
\tablehead{\headingone\the\firstheading\\
\headingtwo\the\secondheading\\}
}{}
\ifthenelse{3=#1}{
\global\thirdheading={#2}
& \headingthree\the\thirdheading\\
\tablehead{\headingone\the\firstheading\\
\headingtwo\the\secondheading
& \headingthree\the\thirdheading\\}
}{}
}
\newcommand{\ENDheading}[1]{
\ifthenelse{1=#1}{\tablehead{}
}{}
\ifthenelse{2=#1}{\tablehead{\headingone\the\first heading\\ }
}{}
\ifthenelse{3=#1}{\tablehead{\headingone \the\firstheading\\
\headingtwo \the\secondheading \\ }
}{}
}
%---------------------------------------------------------------------------
\begin{document}
\begin{supertabular}{|l|l|}
\SETheading{1}{EDV-Erfahrung}
\SETheading{2}{Betriebssysteme}
\SETheading{3}{Unix-Derivate}
\ENDheading{2}
Hallo1\\
Hallo2\\
Hallo3\\
Hallo4\\
Hallo5\\
Hallo6\\
Hallo7\\
Hallo8\\
\end{supertabular}
\end{document}
++++++++++++++++++++++++++++++++++++++++++++++++++ ++
SETheading{Nummer}{Titel} liefert eine Überschrift der Größe "Nummer".
Das ist auch gut so.
Was mich stört ist daß nach jeder Überschrift der Nachfolgende Text nach innen eingezogen wird, obwohl nicht gewollt.
Was mache ich nur falsch ?