I use a fancy style for footers and headers to do a two columns article. You can find the tex file on the following link : http://www.howtotex.com/templates/
My problem is just that I have the footers only on the first page (the header is print on all pages), I use the \thispagestyle{fancy} command but when I remove this command the headers and footers disappear.You can find below a part of the code i use.
Thank you for helping me.
Jeremy.
N.B : This is a Koma script class : "scrartcl"
Code: Select all
\usepackage{fancyhdr}
\pagestyle{fancy}
% Enabling the custom headers/footers
\usepackage{lastpage}
\lhead{}
\chead{}
\rhead{}
\fancyhead[RO,RE]{\includegraphics[width=1\textwidth]{Home_photoband}}
\lfoot{Two column article template \textbullet ~\today}
\cfoot{}
\rfoot{\footnotesize page \thepage\ sur \pageref{LastPage}}
\renewcommand{\headrulewidth}{0.0pt}
\renewcommand{\footrulewidth}{0.4pt}
...
\begin{document}
\maketitle
\thispagestyle{fancy}
...