BibTeX, biblatex and biber ⇒ ~\cite{input} giving (1; 2; 4) instead of [1, 2, 4]
-
- Posts: 8
- Joined: Sat Jan 09, 2010 8:50 am
~\cite{input} giving (1; 2; 4) instead of [1, 2, 4]
If it's important, I was initially using the unsrt.bst style because that's the way I need to list them in my thesis.
Any ideas? If anyone has used this MAKEBST to make their own, perhaps as I go through the long list of options, I might not be selecting the correct option. I've tried quite a few different things, but can't seem to get it to change back to [1, 2, 4]. OR if you know where to change this in the code itself, great!
Any/all help appreciated!
Ricky
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: 8
- Joined: Sat Jan 09, 2010 8:50 am
Re: ~\cite{input} giving (1; 2; 4) instead of [1, 2, 4]
The citations in the main body were being displayed as (1; 2; 4) instead of what I wanted: [1, 2, 4]. I only just realised that if I added:
\bibpunct{(}{)}{;}{a}{,}{,}
into my preamble and changed it to:
\bibpunct{[}{]}{,}{a}{,}{,}
I got EXACTLY what I needed! Hope this helps someone else in the future!