BibTeX, biblatex and biber ⇒ Comma between multiple citations and bibliography appearance
Comma between multiple citations and bibliography appearance
Bibliography citation style is set to Natbib (numerical) in Lyx settings.
1. When I insert multiple citations they appear like this:
blablabla (1 2)
Instead I want the citations to be separated by comma, like this:
blablabla (1, 2)
Something with \usepackage[comma]{natbib}? If so I'm not sure were to put this code in Lyx.
2. When the bibliography is rendered it looks like this:
[1] Reference
Instead I want it without brackets, like this:
1. Reference
Help is appreciated.
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
Comma between multiple citations and bibliography appearance
2. To change how the label is printed, put
Code: Select all
\makeatletter
\renewcommand\@biblabel[1]{#1.}
\makeatother
Comma between multiple citations and bibliography appearance
As to question 2, your answer did very well.
As to question 1, I feel a little embarrassed, as I should have figured this out myself. Anyway, it works when I use this in the preamble:
Code: Select all
\bibpunct{(}{)}{,}{n}{,}{,}