從 verbose-inote 樣式中刪除 seenote 引用

從 verbose-inote 樣式中刪除 seenote 引用

在圖書項目中,當引用已引用的作品時,我想從腳註的引文中刪除“參見註釋...”字段。我的引文風格verbose-inote將這些案例引用為:作者。 (短)標題,參見。名詞XX。我想去掉「See n.XX」。參見 MWE。

我怎樣才能做到這一點?我已經嘗試過,但沒有成功: \renewbibmacro*{cite:seenote}{} 按照biblatex-dw風格的建議。但這個宏並沒有在verbose-inote.

僅僅切換到另一種風格並不是一個選擇,因為它非常接近我的需求,我已經不得不進行大量的定制,verbose-inote而且這本書已經接近準備打印了。

微量元素:

\documentclass{book}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@ARTICLE{AB,
         author    = {Author Beta},
         title     = {Title},
         shortjournal = {ABC},
         journal ={AllButCrash},
         pages = {1-23},
         year={2009}}
@ARTICLE{AB2,
         author    = {Author Beta},
         title     = {Title2},
         shortjournal = {No ABC},
         journal ={Not AllButCrash},
         pages = {1-42},
         year={2019}}
@ARTICLE{CD,
         author    = {Changed Director},
         title     = {Title},
         journal ={Boring Texts},
         pages = {23-42},
         year={2019}}
\end{filecontents}

\usepackage[backend=biber,style=verbose-inote,sorting=nyt,bibencoding=utf8,citereset=chapter,citepages=separate,refsection=none,autocite=footnote,isbn=false,doi=false,url=false,eprint=false,date=short]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
A reference here.\footcite{AB,AB2} See also.\footcite{CD} However, second quote should be shortened but without "`See note"'.\footcite{AB} Equally.\footcites{AB2}[and][]{CD}



\end{document}

答案1

「參見註釋」位元直接編碼到footcite:notebibmacro 中(verbose-inote.cbx, 二。 165-183),要刪除它,我們只需刪除巨集的最後一位即可。

\documentclass{book}

\usepackage[backend=biber,
  style=verbose-inote,
  sorting=nyt,
  refsection=none,
  citereset=chapter,
  autocite=footnote,
  isbn=false, doi=false, url=false, eprint=false,
  date=short,
  citepages=separate,]{biblatex}

\renewbibmacro*{footcite:note}{%
  \ifnameundef{labelname}
    {\printfield{label}}
    {\printnames{labelname}}%
  \ifsingletitle
    {}
    {\setunit*{\printdelim{nametitledelim}}%
     \printfield[title]{labeltitle}}}

\addbibresource{biblatex-examples.bib}

\begin{document}
A reference here.\footcite{sigfridsson,worman}
See also.\footcite{nussbaum}
However, second quote should be shortened but without "`See note"'.\footcite{sigfridsson}
Equally.\footcites{worman}[and][]{nussbaum}
\end{document}

西格弗里德森和賴德。和努斯鮑姆。

請注意,我發現使用sorting=nyt,with 是有問題的,因為該作品主要是透過作者和標題引用的,因此按名稱-標題-年份(預設)style=verbose-inote,排序會更自然。sorting=nty,

相關內容