I'm new to LaTeX and currently writing my thesis with it, having some trouble creating the correct citation format. For I'm German I need all citations to look like the following.
"vgl." means "see literature" and has to be in there in a German thesis.Sometext sometext sometext [vgl. BH01, S. 23], sometext sometext.
Currently LaTeX produces square brackets around the citation, without the "vgl." in it.
I'm using the following preamble and code.Sometext sometext sometext [vgl. [BH01, S. 23]], sometext sometext.
Code: Select all
\documentclass[12pt,a4paper,titlepage,oneside]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[german]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[style=alphabetic,backend=bibtex8]{biblatex}
\bibliography{diplomarbeitlib}
\begin{document}
Some text some text some text [vgl. \cite[S. 23]{BH01}], some text some text.
\end{document}
Or, alternatively, go without any citation brackets? By using the latter I could type the brackets by hand where I need them to be.
Thanks so much for any idea!
Regards,
Mr. Mitbewohner