自定义 backref 文本

自定义 backref 文本

你好,我想更改 backref 文本。我的意思是:

在此处输入图片描述

而是“Siehe S。”我想要“Zitiert auf S.:”

这是我的 MWE,感谢您的帮助!

\documentclass[a4paper,11pt]{scrartcl}
\usepackage[latin1]{inputenc}
\usepackage{csquotes}
\usepackage{blindtext}
\usepackage{filecontents}
\usepackage{hyperref}
\hypersetup{
    colorlinks,
     citecolor=black,
     filecolor=black,
     linkcolor=black,
     urlcolor=black
}
\begin{filecontents}{\jobname.bib} 
@incollection{athanasius1857,
    Address = {Parisiis},
    Author = {{Athanasius Alexandrinus}},
    Booktitle = {S. P. N. Athanasii archiepiscopi Alexandrini opera omnia quae exstant},
    Editor = {Jacques Paul Migne},
    Keywords = {source},
    Pages = {14013-1422},
    Publisher = {Accurante J.-P. Migne},
    Series = {Patrologia Graeca},
    Shortauthor = {Ath.},
    Shorttitle = {ep. fest. 12.},
    Title = {Epistola XII heortastica},
    Volume = {26},
    Year = {1857}}
@book{athanasius1858,
    Address = {Parisiis},
    Author = {{Athanasius Alexandrinus}},
    Booktitle = {S. P. N. Athanasii archiepiscopi Alexandrini opera omnia quae exstant},
    Editor = {Jacques Paul Migne},
    Keywords = {source},
    Pages = {1403-1412},
    Publisher = {Accurante J.-P. Migne},
    Series = {Patrologia Graeca},
    Shortauthor = {Ath.},
    Shorttitle = {ep. fest. 11.},
    Title = {Epistola XI heortastica},
    Volume = {26},
    Year = {1857}}
\end{filecontents}
\usepackage[ngerman]{babel}
\usepackage[style=historische-zeitschrift, maxnames=2, hyperref=true, backref=true, backrefstyle=none, backend=bibtex,idemtracker=true]{biblatex}
\bibliography{\jobname}
%
\begin{document}
\blindtext\footcite{athanasius1858}
\pagebreak
\blindtext\footcite{athanasius1857}
\pagebreak
\printbibliography

\end{document}

答案1

只需添加

\DefineBibliographyStrings{ngerman}{
  backrefpage  = {Zitiert auf S\adddot},
  backrefpages = {Zitiert auf S\adddot},
}

你的序言。

\documentclass[a4paper,11pt]{scrartcl}
\usepackage[latin1]{inputenc}
\usepackage{csquotes}
\usepackage{blindtext}
\usepackage{filecontents}
\usepackage{hyperref}
\hypersetup{
    colorlinks,
     citecolor=black,
     filecolor=black,
     linkcolor=black,
     urlcolor=black
}
\begin{filecontents}{\jobname.bib} 
@incollection{athanasius1857,
    Address = {Parisiis},
    Author = {{Athanasius Alexandrinus}},
    Booktitle = {S. P. N. Athanasii archiepiscopi Alexandrini opera omnia quae exstant},
    Editor = {Jacques Paul Migne},
    Keywords = {source},
    Pages = {14013-1422},
    Publisher = {Accurante J.-P. Migne},
    Series = {Patrologia Graeca},
    Shortauthor = {Ath.},
    Shorttitle = {ep. fest. 12.},
    Title = {Epistola XII heortastica},
    Volume = {26},
    Year = {1857}}
@book{athanasius1858,
    Address = {Parisiis},
    Author = {{Athanasius Alexandrinus}},
    Booktitle = {S. P. N. Athanasii archiepiscopi Alexandrini opera omnia quae exstant},
    Editor = {Jacques Paul Migne},
    Keywords = {source},
    Pages = {1403-1412},
    Publisher = {Accurante J.-P. Migne},
    Series = {Patrologia Graeca},
    Shortauthor = {Ath.},
    Shorttitle = {ep. fest. 11.},
    Title = {Epistola XI heortastica},
    Volume = {26},
    Year = {1857}}
\end{filecontents}
\usepackage[ngerman]{babel}
\usepackage[
  style=historische-zeitschrift,
  maxnames=2,
  hyperref=true,
  backref=true,
  backrefstyle=none,
  backend=bibtex,
  idemtracker=true
]{biblatex}
\addbibresource{\jobname.bib}
\DefineBibliographyStrings{ngerman}{
  backrefpage  = {Zitiert auf S\adddot},
  backrefpages = {Zitiert auf S\adddot},
}

\begin{document}
\blindtext\footcite{athanasius1858}
\pagebreak
\blindtext\footcite{athanasius1857}
\pagebreak
\printbibliography

\end{document}

在此处输入图片描述

相关内容