View previous topic :: View next topic |
Author |
Message |
manuels Advocate
Joined: 22 Nov 2003 Posts: 2146 Location: Europe
|
Posted: Tue Feb 05, 2008 12:20 pm Post subject: [OT: LaTex] Zeit in Kopfzeile [solved[ |
|
|
Hallo zusammen,
ich wollte mich gerade beim Forum von www.komascript.de anmelden um eine Tech-Frage zu stellen. Komischerweise funktioniert der Login meines gerade erstellten Accounts aber nich.
Also hoffe ich, dass hier vielleicht ein paar Tex-Experten rumlaufen.
Ich moechte in meinem Scrbook die aktuelle Zeit in die Kopfzeile einfuegen. Und zwar so:
Code: |
\documentclass[a4paper,10pt]{scrbook}
\usepackage{scrpage2}
\begin{document}
\title{TODO: Type title here}
\author{Manuel Schoelling}
% TODO: Nur fuer Datum in Kopfzeile, spaeter wieder rausloeschen!
\pagestyle{scrplain}
\chead[\now]{scrheadings-zentriert}
% /TODO
\maketitle
\tableofcontents
\include{potexp/potexp}
\end{document}
| Leider funktioniert das nicht, ich bekomme folgenden Fehler:
Code: |
[LaTeX] finished with exit status 1
./my.tex:18:Undefined control sequence. \include{potexp/potexp}
./potexp/potexp.tex:1:Undefined control sequence. \chapter
./potexp/potexp.tex:63:Undefined control sequence. \end{eqnarray*}
./my.tex:18:Undefined control sequence. \include{potexp/potexp} |
Wenn ich aber folgendes aender, funktioniert auf jeden Fall schon mal das erstellen der .dvi-Datei:
Code: | % TODO: Nur fuer Datum in Kopfzeile, spaeter wieder rausloeschen!
\pagestyle{scrplain}
\chead[test]{scrheadings-zentriert}
% /TODO |
Darf man kein \now in die Kopfzeile bringen, oder was ist hier los? _________________ Build your own live cd with catalyst 2.0!
Last edited by manuels on Wed Feb 06, 2008 9:51 am; edited 1 time in total |
|
Back to top |
|
|
mastacloak Apprentice
Joined: 01 Aug 2004 Posts: 174 Location: Berlin / Germany
|
Posted: Tue Feb 05, 2008 8:05 pm Post subject: |
|
|
Hallo,
der Befehl \now ist mir unter LaTeX nicht bekannt. Habe auch auf die Schnelle keine Dokumentation dazu gefunden. Der Befehl endet bei mir ebenfalls in einer "undefined control sequence". Ich vermute, dass also dieser Befehl zu den Problemen führt.
Alternativ schlage ich Dir vor, das Paket scrtime zu benutzen:
Code: |
...
\usepackage{scrtime}
...
\chead[{\today} {\thistime}]{scrheadings-zentriert}
...
|
Funktioniert bei mir wunderbar. \today funktioniert auch ohne das Paket scrtime.
Gruß |
|
Back to top |
|
|
manuels Advocate
Joined: 22 Nov 2003 Posts: 2146 Location: Europe
|
|
Back to top |
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|