GeneralBibliography references cited on page xx incorrect

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
mirou
Posts: 18
Joined: Thu Apr 29, 2010 4:36 am

Bibliography references cited on page xx incorrect

Post by mirou »

Hello,

I am finalizing my thesis and I have opted to do two volumes (the second dedicated for the appendixes) and the bibliography comes at the end of the first section.
As the appendix restarts page counter, the (cited on page xx) appearing in the bibliography next to each item has now indicated correct page numbering for those references belonging to the appendix except that there are similar page numbers in the main volume... This is very confusing
How can I trace this problem. More precisely, is there a way to be explicit in this part to indicate that this page belongs to the appendix volume??
my MWE is the following

Code: Select all

\documentclass[a4paper,12pt,twoside]{StyleThese}
\usepackage[fixlanguage]{babelbib}
\selectbiblanguage{french}
\usepackage{natbib}
\include{formatAndDefs}
\begin{document}
\include{TitlePage}
\dominitoc

\mainmatter

\include{Chapitre1}
\include{Chapitre2}


\bibliographystyle{StyleThese}
\bibliography{These}
\newpage 
\listoftables
\newpage
\listoffigures
\include{Titlepagevolumeannexe}

\begin{appendices}
\include{AnnexeA}
.....
\end{appendices}

\restoregeometry
\end{document}

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

mirou
Posts: 18
Joined: Thu Apr 29, 2010 4:36 am

Bibliography references cited on page xx incorrect

Post by mirou »

Ok I found a good solution. The appendix pages shall be named Apdx # (or Anx if you are working on french for instance) and in the main file to define new page numbering you shall write this command before including each appendix file

Code: Select all

\pagenumbering{arabic}\renewcommand{\thepage}{Anx.\arabic{page}}
Then you can include your appendices with the following lines:

Code: Select all

\begin{appendices}
\include{AnnexeA}
\include{AnnexeB}
...
\end{appendices}
In such a case the bibliography will refence correct page numbering both in the main thesis document and in the appendix that comes after bibliography and takes a new page counting format.

Best of luck
Post Reply