Page LayoutUsing \bibliography{sources} the compiled PDF show "3 References" in the heading

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
mcsentas
Posts: 7
Joined: Thu Nov 23, 2017 5:53 pm

Using \bibliography{sources} the compiled PDF show "3 References" in the heading

Post by mcsentas »

Using \bibliography{sources} the compiled PDF show "3 References" in the heading.

How do I get rid of the 3.?

Recommended reading 2024:

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

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

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Using \bibliography{sources} the compiled PDF show "3 References" in the heading

Post by Johannes_B »

My crystal ball tells me you are using package tocbibind.

But you might not. With the informaton given, it is impossibe to help. Please show a minimal working example.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
mcsentas
Posts: 7
Joined: Thu Nov 23, 2017 5:53 pm

Using \bibliography{sources} the compiled PDF show "3 References" in the heading

Post by mcsentas »

Code: Select all

\documentclass[a4paper,doc,12pt,natbib]{apa6}
\usepackage{apacite}
\usepackage{blindtext} 
\usepackage{times}
\usepackage{fancyhdr}
\usepackage[english]{babel}  
\usepackage{DejaVuSerif}
\usepackage[T1]{fontenc}   
\usepackage{url}
\usepackage{csquotes}
\usepackage[utf8x]{inputenc}
\usepackage{graphicx} 
\usepackage[colorinlistoftodos]{todonotes}
\usepackage[title]{appendix}
\usepackage{setspace}
%\singlespacing
\onehalfspacing
%\doublespacing 
\usepackage{csquotes}
\usepackage{dirtytalk}
\usepackage{geometry}
\geometry{margin=2.54cm}

\usepackage[font=scriptsize]{caption} 
\usepackage{pdfpages}
\usepackage{lastpage}

\title{ }
\shorttitle{ }
\author{ }
\affiliation{The Faculity of Humanities}  

% Clear the header and footer
\fancyhead[R]{\thepage}
\fancyfoot{}
% Set the right side of the footer to be the page number
%\fancyfoot[R]{Page \thepage of \lastpage}

%\fancyfoot[R]{Page \thepage\ of \pageref{LastPage}}

%--enumerate sections down 3 levels
\setcounter{secnumdepth}{3}
\usepackage{chngcntr}
\counterwithin*{subsection}{section}
\renewcommand{\thesubsection}{\thesection.\alph{subsection}}

\begin{document}
\thispagestyle{empty}
\normalfont   
\includepdf[pages=-,pagecommand={\pagestyle{fancy}}]{page.pdf}  
\tableofcontents   

\include{content/exam} 
\bibliographystyle{plain}
\bibliography{sources} 
\listoffigures
\end{document}
Post Reply