BibTeX, biblatex and biber ⇒ Bibliography list not showing page numbers
Bibliography list not showing page numbers
I have a problem with BibTex, I use texmaker and have made a .bib-file for my bibliography that is named ref.bib, it looks as following:
@Article{Cal2000,
author = {Calude, Andreea S.},
title = {The journey of the four colour theorem through time},
journal = {The New Zealand Mathematics Magazine},
year = {2001},
OPTvolume = {38},
OPTnumber = {3},
OPTpages = {27-35},
}
In my main file I input the lines:
\bibliographystyle{plain}
\bibliography{ref}
But when I look at the result it only shows author name, title of the article and the year, not the page numbers, volume number or number, and I do not know how to change this so it does show this...
Anybody knows how to fix this?
Thanks in advance
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Bibliography list not showing page numbers
Code: Select all
OPTvolume = {38},
OPTnumber = {3},
OPTpages = {27-35},
Edit:
These kind of entries seem to be optional. But I couldn't yet find some documentation about that. Extending your code snippets to a minimal working example (MWE), the following works fine for me.
Code: Select all
\begin{filecontents*}{sample.bib}
@article{Cal2000,
author = {Calude, Andreea S.},
title = {The journey of the four colour theorem through time},
journal = {The New Zealand Mathematics Magazine},
year = {2001},
volume = {38},
number = {3},
pages = {27-35},
}
\end{filecontents*}
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{sample}
\end{document}
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Bibliography list not showing page numbers
this does in fact fix the problem, sorry about not posting code in a code box, it was my first time posting on the forums:).
And yes, the entries are optional.