BibTeX, biblatex and biberHeaders Reference

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
mayalaroz
Posts: 6
Joined: Wed Mar 27, 2013 3:13 pm

Headers Reference

Post by mayalaroz »

Hello everybody,

I'm writing my work on Latex et I use the article documentclass. I would like to put headers at every page of my work. So I write:

Code: Select all

\pagestyle{fancyplain}
\renewcommand{\sectionmark}[1]{\markright{\thesection{} #1}}
by inserting the package fancyhdr. So the section appear in my header on the left. In my work, there are also some references that I put thanks to BibTex.

My problem is that the word "reference" appears in my header on the right and I doesn't want. It appears like this:

The section References
--------------------------------------------------------

How Can I suppress the word References from my header ? Thank you very much

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Headers Reference

Post by cgnieder »

Please, could you add a Infominimal working example that allows us to reproduce your issues? It is hard to give any advice without it...

Regards
site moderator & package author
mayalaroz
Posts: 6
Joined: Wed Mar 27, 2013 3:13 pm

Headers Reference

Post by mayalaroz »

Hello,

I agree that it couldn't be clear. I have joined a printscreen of a page of my work.
I have framed the header to see you my problem. I would like to suppress the word 'Références' of my header. Do you know how to do it? The code for my header is the next thing:

Code: Select all

\usepackage{fancyhdr}
\pagestyle{fancyplain}
\renewcommand{\sectionmark}[1]{\markright{\thesection{} #1}}


Is it clearer?
Attachments
reference.png
reference.png (56.57 KiB) Viewed 4446 times
mayalaroz
Posts: 6
Joined: Wed Mar 27, 2013 3:13 pm

Headers Reference

Post by mayalaroz »

I have done a minimal working example by writing

Code: Select all

\documentclass{article}

\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}

\pagestyle{fancyplain}
\renewcommand{\sectionmark}[1]{\markright{\thesection{} #1}}

\begin{document}

\section{Discussion}
\subsection{Calcul d'erreur}

\cite{ref1} \cite{ref2} \cite{ref3}

\bibliographystyle{plain} 
\bibliography{bibli} 

\end{document}
and I have joined an example of my bibli and the result. My question is: How to suppress the word "Références" of the header?
Attachments
reference.pdf
(58.81 KiB) Downloaded 279 times
bibli.bib
(707 Bytes) Downloaded 320 times
Post Reply