Using \bibliography{sources} the compiled PDF show "3 References" in the heading.
How do I get rid of the 3.?
Page Layout ⇒ Using \bibliography{sources} the compiled PDF show "3 References" in the heading
NEW: TikZ book now 40% off at Amazon.com for a short time.
- 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
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.
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.
Using \bibliography{sources} the compiled PDF show "3 References" in the heading
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}