Page Layoutfancyhdr Problems!

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
harakiri1976
Posts: 4
Joined: Tue Feb 03, 2009 6:53 am

fancyhdr Problems!

Post by harakiri1976 »

Hi all!

I'm writing my Thesis (in Portuguese) and I'm having trouble using /fancyhdr package. Maybe I am missing something. But nothing happens! I tried to remove roman and/or arabic numbering because I thought they were creating conflicts and the problem mantains. I can't make chapter names in the header, or page number.
Here is the code:

Code: Select all

\documentclass[a4paper,12pt]{report}

\usepackage{graphicx}

\usepackage[portuguese]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{fancyhdr}
\pagestyle{fancy}

% Header
\newcommand\nomecapitulo{}
\renewcommand\chaptermark[1]{\renewcommand\nomecapitulo{#1}}


\begin{document}

\begin{titlepage}
\begin{center}

% Picture on top of page
includegraphics[width=0.75\textwidth]{Path/To/Picture/picture1.jpg}\\[2cm]

\textsc{\large TEMA DO PROJECTO}\\[1.5cm]
\textit{\normalsize O MEU NOME}\\[1cm]
\textsc{\large RELATÓRIO DE PROJECTO FINAL}\\[0.5cm]

\textsc{\normalsize Orientador: NOME DO ORIENTADOR}\\[1cm]

\vskip .25 in

% Another picture
\includegraphics[width=0.45\textwidth]{link/da/figura/figura2.jpg}\\[2cm]

\vfill

% data
{\large \today}

\end{center}
\end{titlepage}

\pagenumbering{roman}

\begin{abstract}
Este é o resumo!!!
\end{abstract}

% Aknowledgements
\chapter*{Agradecimentos}

% Conteúdo
\tableofcontents
% Lista de figuras
\listoffigures
% Lista de tabelas
\listoftables

% I Chapter - Indroduction
\chapter{Introdução}
\rhead{\nomedocapitulo}
Este é o primeiro capítulo

\pagenumbering{arabic}

% Section
\section{Introdução - Primeiro Subcapitulo}
Este é o primeiro subcapitulo

% II Chapter
\chapter{Arvores}
\rhead{\nomedocapitulo}
Este é o segundo capítulo que designei de Árvores

% Section
\section{Ramos}
Este é o segundo subcapitulo que designei de Ramos

% Bibliography 
\begin{thebibliography}{9}
	\bibitem{lamport94}
		Leslie Lamport,
		\emph{\LaTeX: A Document Preparation System}.
		Addison Wesley, Massachusetts,
		2nd Edition,
		1994.
\end{thebibliography}
% end of Bibliography
		
\end{document}
% end of Report
Some text is in portuguese. Sorry!


PS:

in...

Code: Select all

\rhead{\nomedocapitulo}
I meant...

Code: Select all

\rhead{\nomecapitulo}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

fancyhdr Problems!

Post by Stefan Kottwitz »

Hi,

the first page of a chapter has plain page style, not fancy. You could change that by

Code: Select all

\fancypagestyle{plain}{}
Have a look at the fancyhdr user manual.

Stefan
LaTeX.org admin
harakiri1976
Posts: 4
Joined: Tue Feb 03, 2009 6:53 am

fancyhdr Problems!

Post by harakiri1976 »

Hi Stefan!

Problem solved!:)
Thank You!
I missed that in fancyhdr.pdf manual.
Thanks a lot!

Cheers,

Nuno
Post Reply