
여기에 설명된 것과 동일한 문제가 있습니다.Biblatex, 알파벳을 사용한 저자 뒤 마침표(.) 대신 콜론(:)
내 문제는 이 솔루션이 biblatex-sbl에서 작동하지 않는다는 것입니다. 그래서 어떻게 글로벌(참고문헌의 모든 항목(책, 모음집, 논문, 리뷰 등)에 대해) 메모를 할 수 있는지 묻고 싶었습니다. 변경됨) 이름 뒤에 콜론이 있나요?
이 질문은 여기에서도 질문되었습니다.https://golatex.de/umstellung-auf-biblatex-sbl-in-fussnoten-und-literaturverz-t21903.html그러나 대답은 그것이 매우 복잡하다는 것뿐이었습니다. 내 MWE는 다음과 같습니다.
\documentclass{article}
\usepackage[ngerman]{babel}
\usepackage[german=quotes]{csquotes}
\usepackage[style=sbl]{biblatex}
\usepackage{xpatch}
\xpatchbibdriver{XXX}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}{\addcolon\space}%
\usebibmacro{title}}
{}
{}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{Engelmann:2013,
author = {Engelmann, Hans and Bengelmann, Franz},
title = {Die Sicht},
location = {Berlin},
publisher = {De Gruyter},
date = {2013},
series = {Gamma Omega, I. Reihe: Alpha},
shortseries = {GO.A},
number = {4},
}
@mvlexicon{TRE,
editor = {Schwertner, Siegried M.},
title = {Theologische Realenzyklopädie},
shorttitle = {TRE},
volumes = {36},
location = {Berlin and New York},
publisher = {De Gruyter},
date = {1976/2004},
shorthand = {TRE}
}
@inlexicon{Poe:1994,
author = {Poe, Edgar},
title = {Art. Dichtung},
volume = {2},
pages = {9--343},
xref = {TRE}
}
@review{Well.19,
author={Well, Jan},
revdauthor = {Ban, Peter},
revdtitle={Select. Tomus I, Paris 1950},
journaltitle = {Göttingische gelehrte Anzeigen},
shortjournal = {GGA},
volume={18,2},
keywords = {sekundaer},
date={1826},
pages={14--18},
}
@article{Wink:2000,
author = {Wink, Gert},
title = {„Mega“. Anmerkungen},
shorttitle = {„Mega“},
journaltitle = {Critica storia},
shortjournal = {Cs},
volume = {34,1},
date = {2000},
pages = {9--24}
}
@article{Wink:2003,
author = {Wink, Gert},
title = {„Mega II“. Anmerkungen},
shorttitle = {„Mega“},
journaltitle = {Critica storia},
shortjournal = {Cs},
volume = {41,4},
date = {2003},
pages = {11--22}
}
@incollection{peterson:1993,
author = {Peterson, David},
title = {The Motif of Fulfilment and the Purpose of Luke-Acts},
shorttitle = {Motif of Fulfilment},
pages = {83-104},
volume = {1},
maintitle = {The Book of Acts in Its First Century Setting},
editor = {Winter, Bruce W.},
location = {Grand Rapids},
publisher = {Eerdmans},
date = {1993},
}
@book{Pritchard:1969,
editor = {Pritchard, James B.},
title = {Ancient Near Eastern Texts Relating to the Old Testament},
edition = {3},
location = {Princeton},
publisher = {Princeton University Press},
date = {1969},
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\begin{document}
\printbiblist{abbreviations}
Die Debatten.\footnote{Siehe hierzu: \cite{Poe:1994} und \cite{Wink:2000}.} Dies gilt analog für die Gegner.\footnote{Siehe hierzu: \cite{Wink:2003}.} Die beiden erwähnten\footnote{Siehe hierzu: \cite{Wink:2003}.} Bezeichnungen als „besonders“\footnote{\cite[1]{Engelmann:2013}.} verstanden werden.\footnote{\cite[Vgl.][1]{Engelmann:2013}. Siehe auch: \cite{peterson:1993}, \cite{Pritchard:1969}.} und \cite{Well19}.}
\printbibliography
\end{document}
나는 해결책이 다음과 같다는 것을 알고 있습니다:
\usepackage{xpatch}
\xpatchbibdriver{XXX}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}{\addcolon\space}%
\usebibmacro{title}}
{}
{}
그리고 꽤 잘 작동합니다("XXX"의 경우 "book", "article" 등이어야 합니다). 하지만 "검토"가 작동하지 않는지 궁금합니다. 이유는 무엇입니까?
답변1
내에서 언급했듯이이전 답변, 이 작업을 수행할 수 있는 직접적인 방법은 없습니다.biblatex-sbl
. 다음 릴리스부터는이 답변작동하지만 그때까지는 cite:…
파일의 모든 단일 드라이버 sbl.cbx
와 sbl.bbx
.
나는 두 개의 파일을 살펴보고 biblatex-sbl
지원하는 모든 항목 유형에 대해 이 작업을 수행했습니다. 하지만 그렇게 어렵지는 않습니다. sbl.cbx
와 의 소스를 읽고 sbl.bbx
저자가 인쇄된 위치를 확인하고 적절한 내용을 첫 번째 인용, 후속 인용 및 참고문헌을 기반으로 독립적으로 제어할 수 있는 \newunit
문맥 감지로 대체하면 됩니다 .\setunit{\printdelim{nametitledelim}}
또한 참고문헌에서 이름 대시 뒤에 콜론이 있도록 하기 위해 bibmacro 에 대한 재정의 \namedashpunct
와 패치를 추가했습니다.author
에 이러한 변경 사항을 적용해야 한다는 것이 실망스럽다는 것을 알고 있습니다 biblatex-sbl
. 하지만 스타일은 SBL이 원하는 것을 수행하도록 명시적으로 설계되었으며 변경을 쉽게 만들기 위해 노력하지 않았다는 점을 기억해야 합니다.
MWE
\documentclass{article}
\usepackage[ngerman]{babel}
\usepackage[german=quotes]{csquotes}
\usepackage[style=sbl]{biblatex}
\usepackage{xpatch}
% set up nametitledelim in different contexts
\DeclareDelimFormat[none,bib,biblist]{nametitledelim}{%
\ifciteseen
{\addcomma\space}
{\addcolon\space}}
% also put colon after dash
\renewcommand*{\namedashpunct}{\addcolon\space}
\xpatchbibmacro{author}
{\renewcommand*{\namedashpunct}{\adddot\space}}
{\renewcommand*{\namedashpunct}{\addcolon\space}}
{\message{Patching `author': Success^^J}}
{\message{Patching `author': Failure^^J}}
% patch citation drivers
\xpatchbibdriver{cite:ancienttext}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:ancienttext': Success^^J}}
{\message{Patching `cite:ancienttext': Failure^^J}}
\xpatchbibdriver{cite:classictext}
{\newunit
\usebibmacro{shorttitlenohyperlink}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{shorttitlenohyperlink}}
{\message{Patching `cite:classictext': Success^^J}}
{\message{Patching `cite:classictext': Failure^^J}}
\xpatchbibdriver{cite:article}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:article': Success^^J}}
{\message{Patching `cite:article': Failure^^J}}
\xpatchbibdriver{cite:book}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:book': Success^^J}}
{\message{Patching `cite:book': Failure^^J}}
\xpatchbibdriver{cite:suppbook}
{\usebibmacro{author/editor+others/translator+others}%
\newunit}
{\usebibmacro{author/editor+others/translator+others}%
\setunit{\printdelim{nametitledelim}}}
{\message{Patching `cite:suppbook': Success^^J}}
{\message{Patching `cite:suppbook': Failure^^J}}
\xpatchbibdriver{cite:commentary}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:commentary': Success^^J}}
{\message{Patching `cite:commentary': Failure^^J}}
\xpatchbibdriver{cite:incommentary}
{\usebibmacro{author/translator+others}%
\newunit}
{\usebibmacro{author/translator+others}%
\setunit{\printdelim{nametitledelim}}}
{\message{Patching `cite:commentary': Success^^J}}
{\message{Patching `cite:commentary': Failure^^J}}
\xpatchbibdriver{cite:incollection}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:incollection': Success^^J}}
{\message{Patching `cite:incollection': Failure^^J}}
\xpatchbibdriver{cite:inlexicon}
{\usebibmacro{author/translator+others}%
\newunit}
{\usebibmacro{author/translator+others}%
\setunit{\printdelim{nametitledelim}}}
{\message{Patching `cite:inlexicon': Success^^J}}
{\message{Patching `cite:inlexicon': Failure^^J}}
\xpatchbibdriver{cite:inreference}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:inreference': Success^^J}}
{\message{Patching `cite:inreference': Failure^^J}}
\xpatchbibdriver{cite:review}
{\usebibmacro{author/translator+others}%
\newunit}
{\usebibmacro{author/translator+others}%
\setunit{\printdelim{nametitledelim}}}
{\message{Patching `cite:review': Success^^J}}
{\message{Patching `cite:review': Failure^^J}}
\xpatchbibdriver{cite:thesis}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:thesis': Success^^J}}
{\message{Patching `cite:thesis': Failure^^J}}
\xpatchbibdriver{cite:misc}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:misc': Success^^J}}
{\message{Patching `cite:misc': Failure^^J}}
\xpatchbibdriver{cite:conferencepaper}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:conferencepaper': Success^^J}}
{\message{Patching `cite:conferencepaper': Failure^^J}}
\xpatchbibdriver{cite:periodical}
{\usebibmacro{editor+others}%
\newunit}
{\usebibmacro{editor+others}%
\setunit{\printdelim{nametitledelim}}}
{\message{Patching `cite:periodical': Success^^J}}
{\message{Patching `cite:periodical': Failure^^J}}
\xpatchbibdriver{cite:patent}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `cite:patent': Success^^J}}
{\message{Patching `cite:patent': Failure^^J}}
% patch bibliography drivers
\xpatchbibdriver{ancienttext}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `ancienttext': Success^^J}}
{\message{Patching `ancienttext': Failure^^J}}
\xpatchbibdriver{article}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `article': Success^^J}}
{\message{Patching `article': Failure^^J}}
\xpatchbibdriver{book}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `book': Success^^J}}
{\message{Patching `book': Failure^^J}}
\xpatchbibdriver{suppbook}
{\usebibmacro{author/editor+others/translator+others}%
\newunit}
{\usebibmacro{author/editor+others/translator+others}%
\setunit{\printdelim{nametitledelim}}}
{\message{Patching `suppbook': Success^^J}}
{\message{Patching `suppbook': Failure^^J}}
\xpatchbibdriver{incommentary:short}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `incommentary:short': Success^^J}}
{\message{Patching `incommentary:short': Failure^^J}}
\xpatchbibdriver{incollection}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `incollection': Success^^J}}
{\message{Patching `incollection': Failure^^J}}
\xpatchbibdriver{inreference:short}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `inreference:short': Success^^J}}
{\message{Patching `inreference:short': Failure^^J}}
\xpatchbibdriver{review}
{\usebibmacro{author/translator+others}%
\newunit
\iffieldundef{title}
{\newunit}}
{\usebibmacro{author/translator+others}%
\setunit{\printdelim{nametitledelim}}%
\iffieldundef{title}
{}}
{\message{Patching `review': Success^^J}}
{\message{Patching `review': Failure^^J}}
\xpatchbibdriver{thesis}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `thesis': Success^^J}}
{\message{Patching `thesis': Failure^^J}}
\xpatchbibdriver{misc}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `misc': Success^^J}}
{\message{Patching `misc': Failure^^J}}
\xpatchbibdriver{conferencepaper}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `conferencepaper': Success^^J}}
{\message{Patching `conferencepaper': Failure^^J}}
\xpatchbibdriver{periodical}
{\usebibmacro{editor+others}%
\newunit}
{\usebibmacro{editor+others}%
\setunit{\printdelim{nametitledelim}}}
{\message{Patching `periodical': Success^^J}}
{\message{Patching `periodical': Failure^^J}}
\xpatchbibdriver{patent}
{\newunit
\usebibmacro{title}}
{\setunit{\printdelim{nametitledelim}}%
\usebibmacro{title}}
{\message{Patching `patent': Success^^J}}
{\message{Patching `patent': Failure^^J}}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{Engelmann:2013,
author = {Engelmann, Hans and Bengelmann, Franz},
title = {Die Sicht},
location = {Berlin},
publisher = {De Gruyter},
date = {2013},
series = {Gamma Omega, I. Reihe: Alpha},
shortseries = {GO.A},
number = {4},
}
@mvlexicon{TRE,
editor = {Schwertner, Siegried M.},
title = {Theologische Realenzyklopädie},
shorttitle = {TRE},
volumes = {36},
location = {Berlin and New York},
publisher = {De Gruyter},
date = {1976/2004},
shorthand = {TRE}
}
@inlexicon{Poe:1994,
author = {Poe, Edgar},
title = {Art. Dichtung},
volume = {2},
pages = {9--343},
xref = {TRE}
}
@review{Well.19,
author = {Well, Jan},
revdauthor = {Ban, Peter},
revdtitle = {Select. Tomus I, Paris 1950},
journaltitle = {Göttingische gelehrte Anzeigen},
shortjournal = {GGA},
volume = {18,2},
keywords = {sekundaer},
date = {1826},
pages = {14--18},
}
@article{Wink:2000,
author = {Wink, Gert},
title = {\mkbibquote{Mega}. Anmerkungen},
shorttitle = {\mkbibquote{Mega}},
journaltitle = {Critica storia},
shortjournal = {Cs},
volume = {34,1},
date = {2000},
pages = {9--24},
sorttitle = {Mega. Anmerkungen}
}
@article{Wink:2003,
author = {Wink, Gert},
title = {\mkbibquote{Mega II}. Anmerkungen},
shorttitle = {\mkbibquote{Mega II}},
journaltitle = {Critica storia},
shortjournal = {Cs},
volume = {41,4},
date = {2003},
pages = {11--22},
sortitle = {Mega II. Anmerkungen}
}
@incollection{peterson:1993,
author = {Peterson, David},
title = {The Motif of Fulfilment and the Purpose of Luke-Acts},
shorttitle = {Motif of Fulfilment},
pages = {83-104},
volume = {1},
maintitle = {The Book of Acts in Its First Century Setting},
editor = {Winter, Bruce W.},
location = {Grand Rapids},
publisher = {Eerdmans},
date = {1993},
}
@book{Pritchard:1969,
editor = {Pritchard, James B.},
title = {Ancient Near Eastern Texts Relating to the Old Testament},
edition = {3},
location = {Princeton},
publisher = {Princeton University Press},
date = {1969},
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\begin{document}
\printbiblist{abbreviations}
Die Debatten.\footnote{Siehe hierzu: \cite{Poe:1994} und \cite{Wink:2000}.}
Dies gilt analog für die Gegner.\footnote{Siehe hierzu: \cite{Wink:2003}.} Die
beiden erwähnten\footnote{Siehe hierzu: \cite{Wink:2003}.} Bezeichnungen als
„besonders“\footnote{\cite[1]{Engelmann:2013}.} verstanden
werden.\footnote{\cite[Vgl.][1]{Engelmann:2013}. Siehe auch:
\cite{peterson:1993}, \cite{Pritchard:1969} und \cite{Well.19}.}
\printbibliography
\end{document}