
En el proyecto de un libro, quiero eliminar el campo "Ver nota..." de las citas en las notas al pie cuando hago referencia a un trabajo ya citado. Mi estilo de citación verbose-inote
cita estos casos como: Autor. Título (breve), ver. norte. XX. Quiero deshacerme del "Ver n. XX". Ver MWE.
¿Cómo puedo hacer eso? Lo intenté sin éxito:
\renewbibmacro*{cite:seenote}{}
según lo sugerido por el biblatex-dw
estilo. Pero esta macro no está definida en verbose-inote
.
Simplemente cambiar a otro estilo no es una opción porque se ajusta mucho a mis necesidades, ya tuve que hacer importantes personalizaciones verbose-inote
y el libro está bastante cerca de estar listo 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}
Respuesta1
El bit "ver nota" se codifica directamente en el footcite:note
bibmacro (verbose-inote.cbx
, ll. 165-183), para eliminarlo simplemente eliminamos el último bit de la 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}
Tenga en cuenta que el uso sorting=nyt,
de with me parece style=verbose-inote,
cuestionable, ya que el trabajo se cita principalmente con autor y título, por lo que sería más natural ordenar por nombre-título-año (el valor predeterminado sorting=nty,
).