BibTeX, biblatex and biberCite single volume in a multi-volume work

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Yeats
Posts: 62
Joined: Fri Nov 07, 2008 12:29 pm

Cite single volume in a multi-volume work

Post by Yeats »

Anyone knows how to cite single volume in a multi-volume work without having multiple entries in bibliography file?

What i mean is this:

1. I have some encyclopedias that all share the same name and have more than one volume.

2. I would like to cite them so that Bibtex adds Vol.1 or Vol.2 depending on what i use at the moment.

3. At Bibliography at the end it should produce only one entry like for example:
Author, Book Name, Vol.1-7

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

phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

Re: Cite single volume in a multi-volume work

Post by phi »

You can add additional remarks to the citations with \cite[Vol.~1]{key}. Using the plain style this appears as [2, Vol. 1]. Perhaps that is already sufficient.
Yeats
Posts: 62
Joined: Fri Nov 07, 2008 12:29 pm

Cite single volume in a multi-volume work

Post by Yeats »

phi wrote:You can add additional remarks to the citations with \cite[Vol.~1]{key}. Using the plain style this appears as [2, Vol. 1]. Perhaps that is already sufficient.
No, that would produce cite that looks like this:

Code: Select all

Volume, Author, Book Title, Page.
which is incorrect. It should be

Code: Select all

Author, Book Title, Volume, Page
plus if I use first bracket for "compare" (Vergleich. = Vgl.) which is in my language standard when ever you are citing something that is not literal citation than I cant use that first bracket for volume.
Example:
\cite[Vgl.][134]{key}
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Cite single volume in a multi-volume work

Post by frabjous »

I don't think phi meant in the first brackets, but in the same brackets with the page number. In the style you're using, What does:

\cite[Vgl.][Vol.2, 134]{key}

produce? Anything useable?
Yeats
Posts: 62
Joined: Fri Nov 07, 2008 12:29 pm

Cite single volume in a multi-volume work

Post by Yeats »

frabjous wrote:I don't think phi meant in the first brackets, but in the same brackets with the page number. In the style you're using, What does:

\cite[Vgl.][Vol.2, 134]{key}

produce? Anything useable?
Nope doesnt work sorry :(

It produces this:
Vgl. AUTHOR: Bookname Page [Year], P. Vol.1, 72.
Post Reply