Text Formattingcitation problems with natbib/scrreprt

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
demon
Posts: 26
Joined: Thu Nov 27, 2008 3:45 pm

citation problems with natbib/scrreprt

Post by demon »

Hi again,

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!
Last edited by demon on Sat Feb 21, 2009 5:14 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
curiouslearn
Posts: 105
Joined: Fri Nov 30, 2007 11:32 pm

citation problems with natbib/scrreprt

Post by curiouslearn »

Hi demon,

You can try

Code: Select all

Code, edit and compile here:
\usepackage{natbib}
\setcitestyle{aysep={,},citesep={;}}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Does that work?
demon
Posts: 26
Joined: Thu Nov 27, 2008 3:45 pm

Re: citation problems with natbib/scrreprt

Post by demon »

Excellent solution, works fine, thanks!

I only wonder why they display it like that everywhere when it's not default ... :(
Post Reply