Biblatex: uniquelist function bei numeric bibstyle

Erstellung eines Literaturverzeichnisses mit BibTeX, Biber, BibLaTeX und Co.


NTNU
Forum-Fortgeschrittener
Forum-Fortgeschrittener
Beiträge: 54
Registriert: So 27. Jun 2010, 15:49

Biblatex: uniquelist function bei numeric bibstyle

Beitrag von NTNU »

Hallo zusammen,

ich möchte gerne Autor-Jahr als citestyle verwenden. Für die Bibliothek selber allerdings numeric.
Leider kommt hier jetzt nicht mehr die uniquelist-Funktion zum tragen (ist ja auch logisch da normalerweise ja über die Nummer identifiziert wird).

Habt ihr ne Idee wie ich jetzt die beiden Buchstaben (a,b) auch hinter die Jahreszahl beim numeric Stil bekomme?

LG
\begin{filecontents}{\jobname.bib} 
@book{aristotle:physics, 
  author       = {Wilde, Oscar}, 
  title        = {The Importance of Being Earnest: A Trivial 
Comedy for Serious 
                  People}, 
  year         = 1899, 
  series       = {English and American drama of the Nineteenth 
Century}, 
  publisher    = {Leonard Smithers and Company}, 
  eprint       = {4HIWAAAAYAAJ}, 
  eprinttype   = {googlebooks}, 
  annotation   = {A \texttt{book} with \texttt{eprint} and 
\texttt{eprinttype} 
                  fields.}, } 

@book{wilde, 
  author       = {Wilde, Oscar}, 
  title        = {The Importance of Being Earnest: A Trivial 
Comedy for Serious 
                  People}, 
  year         = 1899, 
  series       = {English and American drama of the Nineteenth 
Century}, 
  publisher    = {Leonard Smithers and Company}, 
  eprint       = {4HIWAAAAYAAJ}, 
  eprinttype   = {googlebooks}, 
  annotation   = {A \texttt{book} with \texttt{eprint} and 
\texttt{eprinttype} 
                  fields.}, 
} 
\end{filecontents} 

\documentclass{scrartcl} 
\KOMAoptions{bibliography=totoc} 
\usepackage[T1]{fontenc} 
\usepackage{selinput} 
\SelectInputMappings{ 
   adieresis={ä}, 
   germandlbs={ß} 
} 
\usepackage[ngerman]{babel} 
\usepackage[%
		bibstyle=numeric,%
%			labelyear=false,%
		citestyle=authoryear-comp,%
		firstinits=true,%
		terseinits=true,%
		useprefix=true,%
   	backend=bibtex8,%
   	maxnames=99,%
   	maxcitenames=2,%
   	natbib=true,%
		uniquelist=true,%
%		maxnames=1,%
		%indexing=true,%
]{biblatex} 
\addbibresource{\jobname.bib} 
\begin{document} 
\tableofcontents 

\section{Eine Section"=Überschrift} 

\cite{aristotle:physics} 
\cite{wilde}
\printbibliography 
\end{document}