Remover referência seenote do estilo verbose-inote

Remover referência seenote do estilo verbose-inote

Em um projeto de livro, desejo remover o campo "Ver nota..." das citações em notas de rodapé ao me referir a uma obra já citada. Meu estilo de citação verbose-inotecita esses casos como: Autor. (Curto)Título, veja. n. XX. Quero me livrar do "Ver n. XX". Veja MWE.

Como eu posso fazer isso? Tentei, sem sucesso: \renewbibmacro*{cite:seenote}{} conforme sugerido para o biblatex-dwestilo. Mas esta macro não está definida em verbose-inote.

Só mudar para outro estilo não é uma opção porque está muito próximo das minhas necessidades, já tive que fazer personalizações pesadas verbose-inotee o livro está bem perto de estar pronto para imprimir.

MWE:

\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}

Responder1

O bit "ver nota" é codificado diretamente no footcite:notebibmacro (verbose-inote.cbx, ll. 165-183), para removê-lo simplesmente removemos o último bit da macro.

\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}

Sigfridsson e Ryde.//Worman; e Nussbaum.

Observe que considero o uso sorting=nyt,questionável style=verbose-inote,, já que o trabalho é citado principalmente com autor e título, de modo que seria mais natural classificar por nome-título-ano (o padrão sorting=nty,).

informação relacionada