Page Layout ⇒ Using \bibliography{sources} the compiled PDF show "3 References" in the heading
Using \bibliography{sources} the compiled PDF show "3 References" in the heading
How do I get rid of the 3.?
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
- 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
But you might not. With the informaton given, it is impossibe to help. Please show a minimal working example.
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}