BibTeX, biblatex and biber ⇒ natbib, pages in references
natbib, pages in references
I started to use bibtex to organize the references in my dissertation today.
I really like the standard natbib style that looks a little like this:
A. Alesina, ... Journal of Public Economics ..., 2004. [7, 24]
BUT: Is there any way that the pages are NOT given at the end of the list entry? I'd like to see this:
A. Alesina, ... Journal of Public Economics ..., 2004.
Best regards,
Christian
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
Re: natbib, pages in references
Re: natbib, pages in references
these are my settings:
\usepackage[sectionbib,round]{natbib}
\begin{document}
\bibliographystyle{plainnat}
...
\citet{Akerlof1990}
.....
\bibliography{LiteraturDatenbank}
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
natbib, pages in references
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: natbib, pages in references
and sorry for the inconvenience. I solved my problem by deleting the a package forgot to mention.
Best regards
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
natbib, pages in references
It would be very kind to post the solution. The stuff you provided here is not enough to get an idea of what went wrong.mclaine wrote:[...] I solved my problem by deleting the a package forgot to mention. [...]
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
natbib, pages in references
However, I've got ANOTHER question:
I tested different styles today and except for one tiny detail 'kluwer' looks perfect.
My example code is:
Code: Select all
\documentclass[12pt,titlepage]{article}
\usepackage{graphicx}
\usepackage[sectionbib,round]{natbib}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{color}
\usepackage{MNSymbol}
\usepackage[latin1]{inputenc}
\begin{document}
\bibliographystyle{kluwer}
\section{Introduction}\label{secintr}
\citet{Akerlof1990}, \citet{Card1994}
\bibliography{LiteraturDatenbank}
\end{document}
Code: Select all
@ARTICLE{Akerlof1990,
author = {Akerlof, G. A. and J. L. Yellen},
title = {The Fair Wage-Effort Hypothesis and Unemployment},
journal = {Quarterly Journal of Economics},
year = {1990},
volume = {105},
pages = {255 - 283},
number = {2},
owner = {dst},
timestamp = {2008.12.19}
}
@ARTICLE{Card1994,
author = {Card, D. E. and A. B. Krueger},
title = {Minimum Wages and Employment: A Case Study of the Fast-Food Industry
in New Jersey and Pennsylvania},
journal = {American Economic Review},
year = {1994},
volume = {84},
pages = {772 - 793},
number = {4},
owner = {dst},
timestamp = {2008.12.19}
}
-------------------------------
Akerlof, G. A. and Yellen, J. L.: 1990, The fair wage-eort hypothesis and
unemployment, Quarterly Journal of Economics 105(2), 255 - 283.
Card, D. E. and Krueger, A. B.: 1994, Minimum wages and employment:
A case study of the fast-food industry in new jersey and pennsylvania,
American Economic Review 84(4), 772 - 793.
-------------------------------
THE PROBLEM with this is: New Jersey and Pennsylvania are not starting with capital letters, although I used them in JapRef.
IS THERE ANY WAY to fix this problem? I'm fine with the fact that everything else is written in lowercases, but for New Jersey etc. it looks odd.
natbib, pages in references
use braces to enclose capitaliced letters that you want to preserve; i.e., use something like the following:
Code: Select all
...
title = {Minimum Wages and Employment: A Case Study of the Fast-Food Industry
in {N}ew {J}ersey and {P}ennsylvania},
...