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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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 4378 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 271 times
bibli.bib
(707 Bytes) Downloaded 315 times
Post Reply