biblatex-dw:在参考书目中显示编辑器字符串,但不在脚注中显示

biblatex-dw:在参考书目中显示编辑器字符串,但不在脚注中显示

梅威瑟:

\documentclass{book}
\usepackage{a4wide}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{polyglossia}
\setmainlanguage[spelling=new,babelshorthands=true]{german}
\usepackage[autostyle]{csquotes}
\usepackage[style=authortitle-dw,
edsuper=true,
namefont=smallcaps,
useprefix=true,
ibidemfont=smallcaps,
idemfont=smallcaps,
idembibformat=dash,
shorthandibid=true,
backref=false,
backrefstyle=none,
hyperref=true,
isbn=false,
backend=biber,
citereset=chapter,
bibencoding=utf8]{biblatex}
\DeclareFieldFormat{pages}{#1}
\DeclareFieldFormat{page}{#1}
\DeclareNameAlias{sortname}{last-first}
\DefineBibliographyStrings{german}{
    and={/},
    page={},
    andothers = {{et\,al\adddot}},
    editor = {{Hg\adddot}} ,
    editors = {{Hg\adddot}}
}


\usepackage{filecontents}
\begin{filecontents}{file.bib}

@book{ebert1989,
    year = {1989},
    title = {Räumt die Steine hinweg: DDR Herbst 1989: geistliche Reden im politischen Aufbruch},
    address = {München},
    publisher = {Claudius},
    isbn = {3532620987},
    editor = {Ebert, Andreas and Haberer, Johanna and Kraft, Friedrich},
    shorttitle = {Steine}
}

    @book{bulischop.2006,
        author = {Bulisch, Jens},
        year = {2006},
        title = {Evangelische Presse in der DDR},
        address = {Göttingen},
        volume = {43},
        publisher = {Vandenhoeck und Ruprecht},
        isbn = {3525557442},
        series = {AKZG},
        shorttitle = {Presse}
    }
\end{filecontents}

\addbibresource{file.bib}
\begin{document}
    text \footcite{bulischop.2006} text.
    text \footcite{ebert1989} haha. 
    \printbibliography
\end{document}

我希望编辑器字符串(Hg.)显示在参考书目中,但在脚注中消失。

在此处输入图片描述

答案1

biblatex-dw有一个选项(当然有)。

edstringincitations=false,

相关内容