linch
29-05-2012, 19:17
Erst einmal hallo an alle Forumianer!
Ich muss morgen früh ein Paper abgeben, schreibe aber zum ersten mal im Latex und habe gleich mehrere Hürden:
1) Das Dokument soll zweispaltig sein, das Abstract aber einspaltig.
\documentclass[10pt,twocolumn,...]{scrartcl} funktioniert, allerdings ist das Abstract nicht einspaltig. Habe schon folgende Lösungen gefunden:
One often requires that the abstract of a paper should appear across the entire page, even in a two-column paper. The required trick is:
\documentclass[twocolumn]{article}
...
\begin{document}
... % \author, etc
\twocolumn[
\begin{@twocolumnfalse}
\maketitle
\begin{abstract}
...
\end{abstract}
\end{@twocolumnfalse}
]
Unfortunately, with the above \thanks won’t work in the \author list. If you need such specially-numbered footnotes, you can make them like this:
\title{Demonstration}
\author{Me, You\thanks{}}
\twocolumn[
... as above ...
]
{
\renewcommand{\thefootnote}%
{\fnsymbol{footnote}}
\footnotetext[1]{Thanks for nothing}
}
and so on.
As an alternative, among other facilities the abstract package provides a \saythanks command and a onecolabstract environment which remove the need to fiddle with the \thanks and footnoting. They can be used like this:
\twocolumn[
\maketitle % full width title
\begin{onecolabstract} % ditto abstract
... text
\end{onecolabstract}
]
\saythanks % typeset any \thanks
Allerdings funktioniert bei mir weder \begin{@twocolumnfalse} ... \end{@twocolumnfalse}, noch \usepackage{abstract} .... \begin{onecolabstract} .... \begin{onecolabstract} . Woran kann das liegen? Fehlermeldungen spuckt Latex keine.
2) \title{Title} und anschließend \maketitle erzeugt nicht nur den Titel, sondern platziert noch das Datum untendrunter. Das Datum brauch ich aber nicht. Wo ist es definiert und wie kann ich das ausschalten?
3) wenn ich vor dem Abstract die Zeile \authors{Me} hinzufüge, kommt eine Fehlermeldung:
! Undefined control sequence
<recently read> \authors
1.26 \authors
{Me}
Was heißt denn das? Was mach ich hier falsch?
Vielen Dank und Gruß!
Ich muss morgen früh ein Paper abgeben, schreibe aber zum ersten mal im Latex und habe gleich mehrere Hürden:
1) Das Dokument soll zweispaltig sein, das Abstract aber einspaltig.
\documentclass[10pt,twocolumn,...]{scrartcl} funktioniert, allerdings ist das Abstract nicht einspaltig. Habe schon folgende Lösungen gefunden:
One often requires that the abstract of a paper should appear across the entire page, even in a two-column paper. The required trick is:
\documentclass[twocolumn]{article}
...
\begin{document}
... % \author, etc
\twocolumn[
\begin{@twocolumnfalse}
\maketitle
\begin{abstract}
...
\end{abstract}
\end{@twocolumnfalse}
]
Unfortunately, with the above \thanks won’t work in the \author list. If you need such specially-numbered footnotes, you can make them like this:
\title{Demonstration}
\author{Me, You\thanks{}}
\twocolumn[
... as above ...
]
{
\renewcommand{\thefootnote}%
{\fnsymbol{footnote}}
\footnotetext[1]{Thanks for nothing}
}
and so on.
As an alternative, among other facilities the abstract package provides a \saythanks command and a onecolabstract environment which remove the need to fiddle with the \thanks and footnoting. They can be used like this:
\twocolumn[
\maketitle % full width title
\begin{onecolabstract} % ditto abstract
... text
\end{onecolabstract}
]
\saythanks % typeset any \thanks
Allerdings funktioniert bei mir weder \begin{@twocolumnfalse} ... \end{@twocolumnfalse}, noch \usepackage{abstract} .... \begin{onecolabstract} .... \begin{onecolabstract} . Woran kann das liegen? Fehlermeldungen spuckt Latex keine.
2) \title{Title} und anschließend \maketitle erzeugt nicht nur den Titel, sondern platziert noch das Datum untendrunter. Das Datum brauch ich aber nicht. Wo ist es definiert und wie kann ich das ausschalten?
3) wenn ich vor dem Abstract die Zeile \authors{Me} hinzufüge, kommt eine Fehlermeldung:
! Undefined control sequence
<recently read> \authors
1.26 \authors
{Me}
Was heißt denn das? Was mach ich hier falsch?
Vielen Dank und Gruß!