BibTeX, biblatex and bibercan't get year = {1950(1925)} to work

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
maja z
Posts: 18
Joined: Mon May 18, 2009 8:53 pm

can't get year = {1950(1925)} to work

Post by maja z »

Hi! I'm not sure what the correct terminology is, but I have a reference with "two years" - one is the original publication and the other is the copy or edition that I have obtained. But since the year it was first published is important, I want to keep both.

So by bibtex source is

Code: Select all

year = {1950(1925)}
but \citep (I'm using natbib) gives me:

(Fisher,1950(1925, p.81)

instead of

(Fisher,1950(1925), p.81)

So it has lost the last parenthesis? Why? How can I fix this?

Thanks!

Maja

Edit: I got it work using

Code: Select all

year = {1950[1925]}
Which is acceptable I guess, but the question still stands!
Last edited by maja z on Sat Aug 21, 2010 4:16 am, edited 1 time in total.

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

can't get year = {1950(1925)} to work

Post by gmedina »

Hi,

use

Code: Select all

year = {1950{(}1925{)}}
in the .bib file (enclose the parentheses using curly brackets).
1,1,2,3,5,8,13,21,34,55,89,144,233,...
maja z
Posts: 18
Joined: Mon May 18, 2009 8:53 pm

Re: can't get year = {1950(1925)} to work

Post by maja z »

Thanks gmedina, works perfectly!
m.
Post Reply