I need the header with:
- even pages at left and chapter name at right
odd pages at right and section name at left
empty footer
What I am doing wrong?
other question why
Code: Select all
\documentclass[12pt, twoside, a4paper]{book}
example:
Code: Select all
\documentclass[12pt, twoside, a4paper]{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[RO,LE]{\small\thepage}
\fancyhead[LO]{\small \emph{\leftmark}}
\fancyhead[RE]{\small \emph{\rightmark}}
\fancyfoot[L,R,C]{}
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{0pt}
\begin{document}
\onehalfspacing
\linespread{1.5}
\begin{titlepage}
...
\end{titlepage}
\pagenumbering{Roman}
\section*{Abstract}
...
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}
\section{Introduction}
\chapter{write the name}
\section{State of Art}
\subsection{Modelos ARFIMA ($p,d,q$)}
\section{Conclusions}
\section{References}
\end{document}