Biblatex: uniquelist function bei numeric bibstyle

Antwort erstellen


Diese Frage dient dazu, das automatisierte Versenden von Formularen durch Spam-Bots zu verhindern.
Smilies
:D :) :( :o :shock: :? 8) :lol: :-x :P :oops: :cry: :evil: :twisted: :roll: :wink: :!: :?: :idea: :arrow: :| :mrgreen:

BBCode ist eingeschaltet
[img] ist eingeschaltet
[flash] ist ausgeschaltet
[url] ist eingeschaltet
Smilies sind eingeschaltet

Die letzten Beiträge des Themas

Ich habe die Datenschutzerklärung gelesen und bin damit einverstanden.

   

Wenn du eine Datei oder mehrere Dateien anhängen möchtest, gib die Details unten ein.

Ansicht erweitern Die letzten Beiträge des Themas: Biblatex: uniquelist function bei numeric bibstyle

Biblatex: uniquelist function bei numeric bibstyle

von NTNU » Fr 14. Mär 2014, 11:20

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} 

Nach oben