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

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

User avatar
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