Text Formatting ⇒ citation problems with natbib/scrreprt
citation problems with natbib/scrreprt
I'm using natbib in scrreprt for my thesis. In the examples for natbib multiple citations are separated by colon, the year is separated by a comma. In my case, everything is separated by colon or a comma:
with \usepackage[comma]{natbib}
citep{...} results in: (Hogben, 2008, Rubel, 2007, Halpin, 2008)
with \usepackage{natbib}
citep{...} results in: (Hogben; 2008; Rubel; 2007; Halpin; 2008)
But how can I get the style like it is in all the examples: (Hogben, 2008; Rubel, 2007...)?
Thanks a lot!
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
-
- Posts: 105
- Joined: Fri Nov 30, 2007 11:32 pm
citation problems with natbib/scrreprt
You can try
Code: Select all
\usepackage{natbib}
\setcitestyle{aysep={,},citesep={;}}
Re: citation problems with natbib/scrreprt
I only wonder why they display it like that everywhere when it's not default ...
