Friday, December 18, 2009

LaTeX for EuroPLoP submissions

For anyone preparing their final submissions using LaTeX, Juhola Arto has these helpful instructions:

Should any LaTeX/LyX user ask, these incantations worked for me (with LyX).
The special pagenumber is in the footer, centered, also, I placed the copyright notice in the last ch.


A LaTeX preamble for EuroPlop papers (with standard "article" document class):
------------------
\usepackage[T1]{fontenc} % T1-coded fonts (=ec)
\usepackage{mathptmx} % Selects Adobe Times Roman as the default text font

% These commands will generate the special footer for the pages after the title page
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % Clears all header and footer fields
\fancyfoot[C]{F1-\thepage} % The special footer definition
\renewcommand{\headrulewidth}{0pt} % No decorative line after header regions
\renewcommand{\footrulewidth}{0pt} % No decorative line before footers


% This command generates the special footer for the title page.
\fancypagestyle{plain}{%
\fancyhf{}
\fancyfoot[C]{F1-\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}

------------------

No comments: