BibTeX, biblatex and biberCitation of author and page number (authorname, p.)

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
haaj86
Posts: 21
Joined: Mon Apr 06, 2009 11:18 pm

Citation of author and page number (authorname, p.)

Post by haaj86 »

Hi, I have a bibtex file with references to many books, and sometimes I need to reference different pages of the same book. So what \bibliographystyle{?} that I can use which will allow the references in the main body of my report to appear like this (authorname, p. xx) where p.xx is the page number be. I see this format in many scientific papers. Also, how do I cite the page number using \cite{key ???}
Please give me as much details as you can.

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Citation of author and page number (authorname, p.)

Post by frabjous »

The \cite command has an optional parameter for the page numbers.
E.g., \cite[pp. 10--15]{key} may well give the desired effect, at least if you pick the right bibliography style. I don't know of any bibliography style that only prints the authorname in the citation, but perhaps one of the authordate versions would suit you.

E.g., put:

\usepackage{authordate1-4}

in the header and then

\bibliographystyle{authordate3}
\bibliography{mybibfile}


Where you want your bibliography to go.
haaj86
Posts: 21
Joined: Mon Apr 06, 2009 11:18 pm

Re: Citation of author and page number (authorname, p.)

Post by haaj86 »

Thank you so much, \cite[pp. 10--15]{key} with \bibliographystyle{alpha} works well too. I will check authordate as well. thank you once again
Post Reply