現在、PDF では次のようになっています (「Ndr.」は「reprint」のドイツ語の略語です)。
クリスチャン・クラフト:ファーザーランド。 1995年、Ndr.ミュンヘン:Deutscher Taschenbuch Verlag 2012年。
= author: title. origdate, address: publisher date.
こんな感じにしたいです:
クリスチャン・クラフト:ファーザーランド。ミュンヘン:Deutscher Taschenbuch Verlag 2012 [1995]。
= author: title. address: publisher date [origdate].
.bib ファイル内のすべての種類のエントリに対して同じ方法で変更したいと思います。Origdate は常に日付の後の括弧で囲む必要があります。
以下のコードは、出力を定義する bbx ファイル ( に基づいていますauthortitle-dw
) のセクションであることがわかりました。上記の例のように origdate を表示するには、どのように変更すればよいでしょうか?
\renewbibmacro*{publisher+location+date}{%
\ifbool{bbx:origfields}
{\ifbool{bbx:nolocation}
{\iffieldundef{origyear}
{\usebibmacro{loc+pub+year}}
{\usebibmacro{origloc+origpub+origyear}}}
{\iflistundef{origlocation}
{\iffieldundef{origyear}
{\usebibmacro{loc+pub+year}}
{\usebibmacro{origloc+origpub+origyear}}}
{\iffieldundef{origyear}
{\blxdw@warning{%
Field 'origlocation' is set, but 'origdate' is
\MessageBreak%
empty at entry '\abx@field@entrykey'.
The 'orig' fields \MessageBreak are omitted
for this entry}%
\usebibmacro{loc+pub+year}}
{\usebibmacro{origloc+origpub+origyear}}}}}
{\usebibmacro{loc+pub+year}}}
\newbibmacro{loc+pub+year}{%
\ifbool{bbx:nolocation}
{}
{\printlist{location}%
\ifbool{bbx:nopublisher}
{\setunit*{\locationdatepunct}}%
{\iflistundef{publisher}
{\setunit*{\locationdatepunct}}
{\setunit*{\locationpublisherpunct}%
\printlist{publisher}%
\setunit*{\publisherdatepunct}}}}%
\ifbool{bbx:edsuper}
{\printfield[edition:super]{edition}}
{}%
\usebibmacro{date}%
\newunit}
\newbibmacro{origloc+origpub+origyear}{%
\ifbool{bbx:nolocation}
{}
{\printlist{origlocation}%
\ifbool{bbx:nopublisher}
{\setunit*{\locationdatepunct}}%
{\iflistundef{origpublisher}
{\setunit*{\locationdatepunct}}
{\setunit*{\locationpublisherpunct}%
\printlist{origpublisher}%
\setunit*{\publisherdatepunct}}}}%
\ifbool{bbx:edsuper}
{\printfield[edition:super]{edition}}
{}%
\usebibmacro{origdate}%
\ifdefstring{\bbx@origfieldsformat}{punct}
{\setunit*{\origfieldspunct}%
\usebibmacro{origfields:loc+pub+year}}
{\ifdefstring{\bbx@origfieldsformat}{parens}
{\setunit*{\addspace}%
\printtext[parens]{%
\usebibmacro{origfields:loc+pub+year}}}
{\ifdefstring{\bbx@origfieldsformat}{brackets}
{\setunit*{\addspace}%
\printtext[brackets]{%
\usebibmacro{origfields:loc+pub+year}}}
{\setunit*{\origfieldspunct}%
\usebibmacro{origfields:loc+pub+year}}}}
\newunit}
\newbibmacro{origfields:loc+pub+year}{%
\bibstring{reprint}%
\setunit{\addspace}%
\ifbool{bbx:nolocation}
{}
{\printlist{location}%
\ifbool{bbx:nopublisher}
{\setunit*{\locationdatepunct}}%
{\iflistundef{publisher}
{\setunit*{\locationdatepunct}}
{\setunit*{\locationpublisherpunct}%
\printlist{publisher}%
\setunit*{\publisherdatepunct}}}}%
\usebibmacro{date}}
\newbibmacro*{origdate}{\printorigdate}
MWE は次のとおりです。
\begin{filecontents*}{literature.bib}
@book{kracht_faserland_2012,
address = {München},
title = {Faserland},
publisher = {Deutscher Taschenbuch Verlag},
author = {Kracht, Christian},
date = {2012},
origdate = {1995}
}
\end{filecontents*}
\documentclass[twoside=false,fontsize=12pt,toc=bibliography,toc=listof]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[babel,german=guillemets]{csquotes}
\usepackage[backend=biber,style=authortitle-dw,series=afteryear,firstfull,nopublisher=false,sorting=nyt]{biblatex}
\addbibresource{literature.bib}
\begin{document}
Dies ist ein Beispielsatz.\footnote{Vgl. \cite[76]{kracht_faserland_2012}.}
\backmatter
\printbibliography
\end{document}
答え1
おそらく最もエレガントな解決策ではないかもしれませんが、私の場合はうまくいきました。句読点コマンドをいくつか変更し、要素の順序を変更する必要があります。
\newbibmacro*{origdate}{\printorigdate}
\renewbibmacro*{publisher+location+date}{%
\ifbool{bbx:origfields}
{\ifbool{bbx:nolocation}
{\iffieldundef{origyear}
{\usebibmacro{loc+pub+year}}
{\usebibmacro{origloc+origpub+origyear}}}
{\iflistundef{origlocation}
{\iffieldundef{origyear}
{\usebibmacro{loc+pub+year}}
{\usebibmacro{origloc+origpub+origyear}}}
{\iffieldundef{origyear}
{\blxdw@warning{%
Field 'origlocation' is set, but 'origdate' is
\MessageBreak%
empty at entry '\abx@field@entrykey'.
The 'orig' fields \MessageBreak are omitted
for this entry}%
\usebibmacro{loc+pub+year}}
{\usebibmacro{origloc+origpub+origyear}}}}}
{\usebibmacro{loc+pub+year}}}
\newbibmacro{loc+pub+year}{%
\ifbool{bbx:nolocation}
{}
{\printlist{location}%
\ifbool{bbx:nopublisher}
{\setunit*{\locationdatepunct}}%
{\iflistundef{publisher}
{\setunit*{\locationdatepunct}}
{\setunit*{\locationpublisherpunct}%
\printlist{publisher}%
\setunit*{\addspace}}}}%
\ifbool{bbx:edsuper}
{\printfield[edition:super]{edition}}
{}%
\usebibmacro{date}%
}
\newbibmacro{origloc+origpub+origyear}{%
\ifbool{bbx:nolocation}
{}
{\printlist{origlocation}%
\ifbool{bbx:nopublisher}
{\setunit*{\locationdatepunct}}%
{\iflistundef{origpublisher}
{\setunit*{\locationdatepunct}}
{\setunit*{\locationpublisherpunct}%
\printlist{origpublisher}%
\setunit*{\addspace}}}}%
\ifdefstring{\bbx@origfieldsformat}{punct}
{\setunit*{\origfieldspunct}%
\usebibmacro{loc+pub+year}}
{\ifdefstring{\bbx@origfieldsformat}{parens}
{\setunit*{\addspace}%
\printtext[parens]{%
\usebibmacro{loc+pub+year}}}
{\ifdefstring{\bbx@origfieldsformat}{brackets}
{\setunit*{\addspace}%
\printtext[brackets]{%
\usebibmacro{loc+pub+year}}}
{\setunit*{\origfieldspunct}%
\usebibmacro{loc+pub+year}}}}
\usebibmacro{origdate}%
\newunit}