I need to implement quite specific citations. I need multiple bibliographies (using multibib for that) and a citation should look like this example:
[see Aut00, p. 100]
So there needs to be text before and after the author/year abbreviation.
The Bibliography should consist of sections in a chapter.
In the example below I accomplished everything except the text before the author abbreviation.
Is there any way to achieve this?
I apprechiate your help
Code: Select all
\documentclass[fontsize=12pt,BCOR=5mm,DIV=12,parskip=half,listof=totoc,
paper=a4,toc=bibliography,pointlessnumbers]{scrreprt}
\usepackage{multibib}
\usepackage[nottoc]{tocbibind}
\usepackage{filecontents}
\begin{filecontents}{biba.bib}
@book{a,
author = {Author1},
year = {2000},
title = {Book A}
}
\end{filecontents}
\begin{filecontents}{bibb.bib}
@book{b,
author = {Author2},
year = {2001},
title = {Book B}
}
\end{filecontents}
\newcites{A}{Bib A}
\newcites{B}{Bib B}
\begin{document}
\citeA[see][p. 100]{a} % this does not work using multibib (Result: '[?, see]p. 100]a'), but does work without
\citeB[p. 100]{b} % this works fine
\chapter*{Literature}
\renewcommand{\bibsection}{\section*{\bibname}}
\bibliographystyleA{alphaurl}
\bibliographyA{biba}
\bibliographystyleB{alphaurl}
\bibliographyB{bibb}
\end{document}