PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Biblatex: Seitenzahlen hinter Incollection



Klopsos
09-03-2010, 17:06
Hallo!

Nachdem ich nun fast die für mich relevanten Richtlinien mit Biblatex umgesetzt habe, tauchen noch zwei Probleme auf, die ich einfach nicht gelöst bekomme und ein wenig Hilfe benötigen könnte:

Ich erzeuge folgenden Eintrag:

E. Fentress – R.F. Docter, North Africa: Rural Settlement and Agricultural Production, in: P. van Dommelen – C.G. Bellard (Hrsg.), North Africa: Rural Settlement and Agricultural Production
(London 2008) 101–128.

Die Seitenzahlen am Ende geben nicht die zitierten Seiten, sondern den Umfang des Artikels an. So soll das in der Bibliographie auch sein. In der Fußnote sollen diese Zahlen jedoch unterdrückt werden. Ich bekomme jedoch nur beide aus- oder eingeschaltet.

So habe ich das ganze in der bbx definiert:
\DeclareBibliographyDriver{incollection}{%
\usebibmacro{bibindex}%
\usebibmacro{author}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{title}%
\setunit{\addcomma\space}%
\usebibmacro{in:}%
\usebibmacro{editorincoll}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{buchtitel}%
\usebibmacro{ort-jahr}%
\usebibmacro{chapter+pages}%
\newunit\newblock
\usebibmacro{url+urldate}%
\newunit\newblock
\printfield{addendum}%
\newunit\newblock
\usebibmacro{finentry}}

Zum zweiten Problem:

Monografien muss ich folgendermaßen zitieren:

E. Kirsten, Die griechische Polis als historisch-geographisches Problem des Mittelmeerraumes (Bonn 1956) 6-55.

Ausgegeben wird aber folgendes:

E. Kirsten, Die griechische Polis als historisch-geographisches Problem des Mittelmeerraumes (Bonn 1956), 6-55.

Das Problem ist das Komma zwischen der Klammer mit Ort und Jahr und den Seitenzahlen. Die Monografien sind so definiert:

\newbibmacro*{buchtitel}{%
{\printtext[title]{%
\printfield[titlecase]{title}%
\addspace%
\printfield[titlecase]{subtitle}}%
}%
\printfield{titleaddon}}
\DeclareBibliographyDriver{book}{%
%\usebibmacro{bibindex}%
\usebibmacro{author/editor}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{buchtitel}%
\usebibmacro{ort-jahr}%
\usebibmacro{chapter+pages}%
\newunit\newblock
\usebibmacro{url+urldate}%
\newunit\newblock
\printfield{addendum}%
\newunit\newblock
\usebibmacro{pageref}%
\usebibmacro{finentry}}

Die Seitenzahlen füge ich so ein:

\footcite[6-55]{kirsten1956}

Wenn mir hier einer auf die Sprünge helfen könnte, wäre ich sehr dankbar.

Grüße

Matthias

lockstep
09-03-2010, 18:14
Das Problem ist das Komma zwischen der Klammer mit Ort und Jahr und den Seitenzahlen. Die Monografien sind so definiert:

[...]

\usebibmacro{ort-jahr}%


Wurde dieses Makro von dir selbst neu definiert? Wenn ja, gilt umso mehr: Mach ein lauffähiges, kleines Beispiel, das dein Problem demonstriert.

lockstep

lockstep
09-03-2010, 19:30
Ich erzeuge folgenden Eintrag:

E. Fentress – R.F. Docter, North Africa: Rural Settlement and Agricultural Production, in: P. van Dommelen – C.G. Bellard (Hrsg.), North Africa: Rural Settlement and Agricultural Production
(London 2008) 101–128.

Die Seitenzahlen am Ende geben nicht die zitierten Seiten, sondern den Umfang des Artikels an. So soll das in der Bibliographie auch sein. In der Fußnote sollen diese Zahlen jedoch unterdrückt werden. Ich bekomme jedoch nur beide aus- oder eingeschaltet.

Die folgende Bastelei funktioniert auf den ersten Blick (!) für den biblatex-Standardstil verbose. Grundidee ist, innerhalb des für Vollzitate zuständigen Makros (hier: cite:full) das für den Seitenumfang zuständige Makro (hier: chapter+pages) so umzudefinieren, dass die Seiteninformation entfällt. Außerhalb des Vollzitatmakros - also insbesondere im Literaturverzeichnis - sollte dabei die ursprüngliche Definition des Seitenumfangmakros erhalten bleiben. Wie gesagt, Nebenwirkungen nicht ausgeschlossen.



\documentclass{article}

\usepackage[latin9]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}

\usepackage{csquotes}
\usepackage[style=verbose]{biblatex}

\renewbibmacro*{cite:full}{%
\renewbibmacro*{chapter+pages}{%
\printfield{chapter}%
% \setunit{\bibpagespunct}%
% \printfield{pages}%
\newunit}% Prozentzeichen hinzugefügt
\printtext[bibhypertarget]{%
\usedriver
{\DeclareNameAlias{sortname}{default}}
{\thefield{entrytype}}}%
\usebibmacro{shorthandintro}}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@incollection{Fis00,
hyphenation = {english},
author = {Fischel, William A.},
year = {2000},
title = {Zoning and land use regulation},
maintitle = {Encyclopedia of law and economics},
volume = {2},
booktitle = {Civil law and economics},
editor = {Boudewijn, Bouckaert and de Geest, Gerrit},
location = {Cheltenham},
publisher = {Elgar},
pages = {403--442},
}
\end{filecontents}

\bibliography{\jobname}

\begin{document}

Ein bisschen Text \autocite{Fis00}.

\printbibliography

\end{document}


lockstep

lockstep
10-03-2010, 07:56
Wenn du schon eine Frage in mehreren Foren (http://www.golatex.de/biblatex-seitenzahlen-hinter-incollection-t4093.html) gleichzeitig postest, gib wenigstens einen Hinweis darauf! Sonst suchen Helfer nach einer Lösung, während sie im anderen Thread bereits bekanntgegeben wurde.

lockstep

Klopsos
10-03-2010, 13:15
Schon einmal vielen Dank für Deine Hilfe, werde Deine Ermahnung bezüglich des doppelten Posts berücksichtigen. Leider stehe ich immer noch auf dem Schlauch und poste daher mal meine kompletten Einstellungen beruhend auf den Vorlagen von Dominik Waßenhoven, angepasst an die Richtlinien des Deutschen Archäologischen Instituts. Wäre für eine Lösung der oben genannten Probleme wirklich dankbar, die DAI-Richtlinien wären so erstmals vollständig umgesetzt.

Meine bbx-Datei:

\ProvidesFile{historische-zeitschrift.bbx}[2008/10/20 v0.8 HZ bibliography style]

\ExecuteBibliographyOptions{pagetracker}


\renewcommand*{\mkbibnamefirst}[1]{\textsc{#1}}
\renewcommand*{\mkbibnamelast}[1]{\textsc{#1}}
\renewcommand*{\mkbibnameprefix}[1]{\textsc{#1}}
\renewcommand*{\mkbibnameaffix}[1]{\textsc{#1}}

\DeclareFieldFormat{booktitle}{#1\isdot}
\DeclareFieldFormat{journaltitle}{#1\isdot}
\DeclareFieldFormat{issuetitle}{#1\isdot}
\DeclareFieldFormat{maintitle}{#1\isdot}
\DeclareFieldFormat{pages}{#1}
\DeclareFieldFormat{title}{#1\isdot}
\DeclareFieldFormat[article]{title}{#1}
\DeclareFieldFormat[inbook]{title}{#1}
\DeclareFieldFormat[incollection]{title}{#1}
\DeclareFieldFormat[inproceedings]{title}{#1}
\DeclareFieldFormat[patent]{title}{#1}
\DeclareFieldFormat[thesis]{title}{#1}
\DeclareFieldFormat[unpublished]{title}{#1}

\renewcommand*{\multinamedelim}{\space--\space}
\renewcommand*{\finalnamedelim}{\space--\space}

\newbibmacro*{series+number}{%
\iffieldundef{series}%
{}
{\printtext[parens]{%
\printfield{series}%
\iffieldundef{number}
{}
{\setunit{\addcomma\space}%
\bibstring{volume}~\printfield{number}}%
\adddot}}}

%%%%% %%%%% %%%%% %%%%% %%%%%
%%%%% Ort + Jahr in Klammern %%%%%
%%%%% %%%%% %%%%% %%%%% %%%%%
\newbibmacro*{publisher+location+year}{%
\printtext[parens]{\printlist{location}%
\setunit*{\addspace}%
\printfield{year}}
\newunit}

\newbibmacro*{ort-jahr}{%zur Verwendung bei Book und Incollection
\printtext[parens]{\printlist{location}%
\setunit*{\addspace}%
\printfield{year}}
}

\renewbibmacro*{editorstrg}{%
\ifthenelse{\value{editor}>1\OR\ifandothers{editor}}
{\mkbibparens{\bibstring{editors}}}
{\mkbibparens{\bibstring{editor}}}}

\renewbibmacro*{editor}{%
\ifthenelse{\ifuseeditor\AND\NOT\ifnameundef{edito r}}
{\ifthenelse{\iffieldequals{namehash}{\bbx@lasthas h}\AND
\NOT\iffirstonpage}
{\bibnamedash}
{\printnames{editor}\addspace% <- ORIGINAL: \addcomma\space
\savefield{namehash}{\bbx@lasthash}}%
\usebibmacro{editorstrg}%
\clearname{editor}}
{\global\undef\bbx@lasthash}}

\newbibmacro*{editorincoll}{%
\ifthenelse{\ifuseeditor\AND\NOT\ifnameundef{edito r}}
{\ifthenelse{\iffieldequals{author}{editor}\AND
\NOT\iffirstonpage}
{\bibnamedash}
{\printnames[]{editor}\addspace %Warum er hier lieber itshape und nicht scshape haben will - k.a.
\savefield{namehash}{\bbx@lasthash}}%
\usebibmacro{editorstrg}%
\clearname{editor}}
{\global\undef\bbx@lasthash}}

\DeclareNameFormat{scshape}{%
\usebibmacro{name:first-last-scshape}{#1}{#3}{#5}{#7}%
\usebibmacro{name:andothers}}

\newbibmacro*{name:first-last-scshape}[4]{%
\usebibmacro{name:delim}{#2#3#1}%
\ifblank{#2}{}{#2\isdot\addlowpenspace}%
\ifblank{#3}{}{%
#3\isdot
\ifpunctmark{'}
{}
{\ifuseprefix{\addhighpenspace}{\addlowpenspace}}} %
#1\isdot
\ifblank{#4}{}{\addlowpenspace#4\isdot}}


\DeclareNameFormat{sortname}{%
\ifnum\value{listcount}=1\relax
\usebibmacro{name:first-last}{#1}{#3}{#5}{#7}% ORIG: name:last-first
\ifblank{#3#5}
{}
{\usebibmacro{name:revsdelim}}%
\else
\usebibmacro{name:first-last}{#1}{#3}{#5}{#7}%
\fi
\usebibmacro{name:andothers}}

\renewenvironment*{thebibliography}
{\list
{}
{\setlength{\leftmargin}{\bibhang}%
\setlength{\itemindent}{-\leftmargin}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}}
{\endlist}

\renewenvironment*{theshorthands}
{\list
{\printfield[shorthandwidth]{shorthand}}
{\setlength{\labelwidth}{\shorthandwidth}%
\setlength{\leftmargin}{\labelwidth}%
\setlength{\labelsep}{\biblabelsep}%
\addtolength{\leftmargin}{\labelsep}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}%
\renewcommand*{\makelabel}[1]{##1\hss}}}
{\endlist}

\InitializeBibliographyStyle{%
\global\undef\bbx@lasthash}

\renewbibmacro*{author}{%
\ifthenelse{\ifuseauthor\AND\NOT\ifnameundef{autho r}}
{\ifthenelse{\iffieldequals{namehash}{\bbx@lasthas h}\AND
\NOT\iffirstonpage}
{\bibnamedash}
{\printnames{author}%
\savefield{namehash}{\bbx@lasthash}}}
{\global\undef\bbx@lasthash}}

\newbibmacro*{in:}{%
\bibstring{in}\addcolon
\setunit{\space}}

\newbibmacro*{maintitle+title}{%
\iffieldsequal{maintitle}{title}
{\clearfield{maintitle}%
\clearfield{mainsubtitle}%
\clearfield{maintitleaddon}}
{\iffieldundef{maintitle}
{}
{\usebibmacro{maintitle}%
\newunit\newblock
\iffieldundef{volume}
{}
{\printfield{volume}%
\printfield{part}%
\setunit{\addcolon\space}}}}%
\usebibmacro{title}%
\newunit}

\newbibmacro*{maintitle+booktitle}{%
\iffieldundef{maintitle}
{}
{\usebibmacro{maintitle}%
\newunit\newblock
\iffieldundef{volume}
{}
{\printfield{volume}%
\printfield{part}%
\setunit{\addcolon\space}}}%
\usebibmacro{booktitle}%
\newunit}

\newbibmacro*{title+issuetitle}{%
\usebibmacro{periodical}%
\setunit*{\addspace}%
\iffieldundef{series}
{}
{\newunit
\printfield{series}%
\setunit{\addspace}}%
\printfield{volume}%
\setunit*{\adddot}%
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}%
\setunit{\addspace}%
\usebibmacro{issue+date}%
\newunit\newblock
\usebibmacro{issue}%
\newunit}

\newbibmacro*{institution+location+year}{%
\printlist{location}%
\iflistundef{institution}
{\setunit*{\addspace}}
{\setunit*{\addcolon\space}}%
\printlist{institution}%
\setunit*{\addspace}%
\printfield{year}%
\newunit}

\newbibmacro*{location+year}{%
\printlist{location}%
\setunit*{\addspace}%
\printfield{year}%
\newunit}

\newbibmacro*{chapter+pages}{%
\printfield{chapter}%
\setunit*{\addcomma\space}%
\printfield{pages}%
\newunit}



\newbibmacro*{finentry}{\finentry}

\DeclareBibliographyDriver{shorthands}{%
\usedriver
{\DeclareNameAlias{sortname}{default}}
{\thefield{entrytype}}%
\finentry}

\DeclareBibliographyDriver{article}{%
\usebibmacro{bibindex}%
\usebibmacro{author/editor}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{title}%
\newunit
\usebibmacro{byauthor}%
\newunit
\printlist{language}%
\newunit\newblock
\usebibmacro{byeditor+others}%
% \newunit\newblock
\setunit{\addcomma\space}%
%\usebibmacro{in:}%
\usebibmacro{journal+issuetitle}%
% \newunit\newblock
\setunit*{\addcomma\space}%
\printfield{note}%
% \newunit\newblock
\setunit*{\newunitpunct}%
\printfield{pages}
\newunit\newblock
\printfield{issn}%
\newunit\newblock
\printfield{doi}%
\newunit\newblock
\usebibmacro{url+urldate}%
\newunit\newblock
\printfield{addendum}%
\newunit\newblock
\usebibmacro{pageref}%
\usebibmacro{finentry}}


\newbibmacro*{buchtitel}{%
{\printtext[title]{%
\printfield[titlecase]{title}%
\addspace%
\printfield[titlecase]{subtitle}}%
}%
\printfield{titleaddon}}

\DeclareBibliographyDriver{book}{%
%\usebibmacro{bibindex}%
\usebibmacro{author/editor}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{buchtitel}%
\usebibmacro{ort-jahr}%
\usebibmacro{chapter+pages}%
\newunit\newblock
\usebibmacro{url+urldate}%
\newunit\newblock
\printfield{addendum}%
\newunit\newblock
\usebibmacro{pageref}%
\usebibmacro{finentry}}

\DeclareBibliographyDriver{incollection}{%
\usebibmacro{bibindex}%
\usebibmacro{author}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{title}%
\setunit{\addcomma\space}%
\usebibmacro{in:}%
\usebibmacro{editorincoll}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{buchtitel}%
\usebibmacro{ort-jahr}%
\usebibmacro{chapter+pages}%
\newunit\newblock
\usebibmacro{url+urldate}%
\newunit\newblock
\printfield{addendum}%
\newunit\newblock
\usebibmacro{finentry}}

\DeclareBibliographyDriver{inproceedings}{%
\usebibmacro{bibindex}%
\usebibmacro{author}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{title}%
\setunit{\addcomma\space}%
\usebibmacro{in:}%
\usebibmacro{editorincoll}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{maintitle+booktitle}%
\newunit
\printfield{venue}%
\newunit
\printlist{language}%
\newunit\newblock
\iffieldundef{maintitle}
{\printfield{volume}%
\printfield{part}}
{}%
\newunit
\printfield{volumes}%
\newunit\newblock
\usebibmacro{series+number}%
\setunit*{\addspace}%
\printfield{note}%
\setunit*{\newunitpunct}%
\usebibmacro{organization}%
\setunit*{\newunitpunct}%
\usebibmacro{publisher+location+year}%
\setunit*{\addcomma\space}%
\usebibmacro{chapter+pages}%
\newunit\newblock
\usebibmacro{url+urldate}%
\newunit\newblock
\printfield{addendum}%
\newunit\newblock
\usebibmacro{pageref}%
\usebibmacro{finentry}}

\DeclareBibliographyDriver{proceedings}{%
\usebibmacro{bibindex}%
\usebibmacro{editor}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{maintitle+title}%
\newunit
\printfield{venue}%
\newunit
\printlist{language}%
\newunit\newblock
\usebibmacro{byeditor+others}%
\newunit\newblock
\iffieldundef{maintitle}
{\printfield{volume}%
\printfield{part}}
{}%
\newunit
\printfield{volumes}%
\newunit\newblock
\usebibmacro{series+number}%
\setunit*{\addspace}%
\printfield{note}%
\setunit*{\newunitpunct}%
\printlist{organization}%
\setunit*{\newunitpunct}%
\usebibmacro{publisher+location+year}%
\newunit\newblock
\usebibmacro{chapter+pages}%
\newunit
\printfield{pagetotal}
\newunit\newblock
\usebibmacro{url+urldate}%
\newunit\newblock
\printfield{addendum}%
\newunit\newblock
\usebibmacro{pageref}%
\usebibmacro{finentry}}


\endinput

Meine Cbx-Datei:

\ProvidesFile{historische-zeitschrift.cbx}[2008/10/20 v0.8 citation style]

\ExecuteBibliographyOptions{
citetracker=context,
ibidtracker=constrict,
singletitle=false
pagetracker,
autocite=footnote
}

\providecommand*{\mkibid}[1]{#1}
\newbool{cbx@loccit}
% to check if a 'see note' phrase is in use:
\newbool{cbx@seenote}

\DeclareBibliographyOption{ibidpage}[true]{%
\ifstrequal{#1}{true}
{\ExecuteBibliographyOptions{loccittracker=constri ct}}
{\ExecuteBibliographyOptions{loccittracker=false}} }

\DeclareFieldFormat{citetitle}{#1\isdot}
\DeclareFieldFormat[article]{citetitle}{#1}
\DeclareFieldFormat[inbook]{citetitle}{#1}
\DeclareFieldFormat[incollection]{citetitle}{#1}
\DeclareFieldFormat[inproceedings]{citetitle}{#1}
\DeclareFieldFormat[patent]{citetitle}{#1}
\DeclareFieldFormat[thesis]{citetitle}{#1}
\DeclareFieldFormat[unpublished]{citetitle}{#1}

\DeclareFieldFormat{postnote}{#1}
\DeclareFieldFormat{multipostnote}{#1}



%%%%% %%%%% %%%%% %%%%% %%%%%
%%%%% Cite bibmacros %%%%%
%%%%% %%%%% %%%%% %%%%% %%%%%




\newbibmacro*{cite}{%
%\global\boolfalse{cbx@seenote}% NEW!
\iffieldundef{shorthand}
{\usedriver
{\DeclareNameAlias{sortname}{default}}
{\thefield{entrytype}}}
{\printfield{shorthand}}}

\newbibmacro*{footcite}{%
%\global\boolfalse{cbx@loccit}%
%\global\boolfalse{cbx@seenote}% NEW!
\ifciteseen
{\iffieldundef{shorthand}
{\ifthenelse{\ifciteibid\AND\NOT\iffirstonpage}
{\usebibmacro{footcite:ibid}}
{\usebibmacro{footcite:note}}}
{\usebibmacro{footcite:shorthand}}}
{\usebibmacro{footcite:full}%
\usebibmacro{footcite:save}}}

\newbibmacro*{footcite:save}{%
\ifundef\@thefnmark
{\ifundef\@theenmark % endnotes.sty
{\csgdef{cbx@note@\thefield{entrykey}}{%
\BibliographyWarning{Missing footnote mark}\textbf{??}}}
{\global\cslet{cbx@note@\thefield{entrykey}}\@thee nmark}}
{\global\cslet{cbx@note@\thefield{entrykey}}\@thef nmark}%
\csxdef{cbx@first@\thefield{entrykey}}{\the\value{ instcount}}}

\newbibmacro*{footcite:full}{%
\printtext{%
\bibhypertarget{\thefield{entrykey}:\the\value{ins tcount}}{%
\usedriver
{\DeclareNameAlias{sortname}{default}}
{\thefield{entrytype}}}}%
\usebibmacro{shorthandintro}}


\newbibmacro*{footcite:note}{%
\global\booltrue{cbx@seenote}% NEW!
\ifnameundef{labelname}
{\printfield{label}}
{\printnames{labelname}}%
\ifsingletitle
{}
{\setunit*{\addcomma\space}%
\printfield[title]{labeltitle}}%
\setunit*{\addspace}%<--- CHANGED
\printtext{%
\bibhyperlink{\thefield{entrykey}:%
\@nameuse{cbx@first@\thefield{entrykey}}}{%
\printtext{\bibleftparen}%
\bibstring{seenote}\space
\@nameuse{cbx@note@\thefield{entrykey}}}}}

\newbibmacro*{footcite:ibid}{%
\printtext{%
\bibhyperlink{\thefield{entrykey}:%
\@nameuse{cbx@first@\thefield{entrykey}}}{%
\bibstring[\mkibid]{ibidem}}}%
\ifloccit
{\global\booltrue{cbx@loccit}}
{}}

\newbibmacro*{footcite:shorthand}{%
\printtext{%
\bibhyperlink{\thefield{entrykey}:%
\@nameuse{cbx@first@\thefield{entrykey}}}{%
\printfield{shorthand}}}}

\newbibmacro*{cite:postnote}{%
\ifbool{cbx@loccit}
{}
{\usebibmacro{postnote}}}





\DeclareCiteCommand{\cite}
{\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\iffootnote
{\usebibmacro{footcite}}
{\usebibmacro{cite}}}
{\multicitedelim}
{\usebibmacro{cite:postnote}}

\DeclareCiteCommand{\parencite}[\mkbibparens]
{\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\iffootnote
{\usebibmacro{footcite}}
{\usebibmacro{cite}}}
{\multicitedelim}
{\usebibmacro{cite:postnote}}

\DeclareCiteCommand{\footcite}[\mkbibfootnote]
{\bibsentence
\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\usebibmacro{footcite}}
{\multicitedelim}
{\usebibmacro{cite:postnote}}

\endinput

Grüße

Matthias

lockstep
11-03-2010, 15:25
Leider stehe ich immer noch auf dem Schlauch und poste daher mal meine kompletten Einstellungen beruhend auf den Vorlagen von Dominik Waßenhoven, angepasst an die Richtlinien des Deutschen Archäologischen Instituts. Wäre für eine Lösung der oben genannten Probleme wirklich dankbar, die DAI-Richtlinien wären so erstmals vollständig umgesetzt.

Nun, ich habe wenig Lust, mich durch hunderte Codezeilen zu wühlen. Außerdem arbeite ich mit biblatex v0.9 und liegt seit heute auch eine daran angepasste (http://groups.google.com/group/comp.text.tex/browse_thread/thread/6856d67516d515e7#) Version des Stils von Dominik Waßenhoven vor. Daher:


Installiere die aktuellen Versionen von biblatex und historische-zeitschrift.
Nimm (nicht im Originalstil, sondern in einer umbenannten Kopie oder besser in einem abgeleiteten Stil bzw. der Datei biblatex.cfg) die aus deiner Sicht notwenigen Anpassungen vor. Wenn du ein bestehendes Makro umdefinierst, kommentiere an den entsprechenden Stellen, was und warum du es getan hast.
Erstelle ein lauffähiges Beispiel, das den Stil historische-zeitschrift lädt und sodann in der Präambel deine Anpassungen (umdefinierte/neue Makros etc.) enthält.

lockstep