
Tengo una página de créditos de imágenes donde cito imágenes usando citas estándar en un archivo bib. Utilizo el campo 'nota' para informar información sobre la licencia. A veces este campo está vacío y luego aparece la palabra 'nota' está impreso al final de mi referencia.
¿Hay alguna forma de detectar que este campo está vacío y no imprimir nada?
He probado múltiples variaciones
\if\relax\citefield{sibswissinstituteofbioinformaticsQ8WZ42TITIN_HUMANHomo}{note}\relax
\else
\citefield{sibswissinstituteofbioinformaticsQ8WZ42TITIN_HUMANHomo}{note}
\fi
incluyendo \empty, {nota} como segundo parámetro en diferentes permutaciones, etc., sin ninguna suerte y no sé a dónde ir a continuación.
MWE:
\begin{filecontents*}[overwrite]{\jobname.bib}
@artwork{galbraithStandardModelPhysics,
title = {Standard model of physics},
url = {https://texample.net/tikz/examples/model-physics/},
author = {Galbraith, David and Burgard, Carsten},
note = {Adapted slightly from original. Used under the terms of the Creative Commons {CC} {BY} Deed 2.5 License},
}
@artwork{sibswissinstituteofbioinformaticsQ8WZ42TITIN_HUMANHomo,
title = {Q8WZ42 ({TITIN}\_HUMAN) Homo sapiens (Human)},
url = {https://swissmodel.expasy.org/repository/uniprot/Q8WZ42},
abstract = {note: added a period in "Extra" because something is needed here for {\textbackslash}citeimage to work properly, and this lines up with the ... dots following},
author = {{SIB Swiss Institute of Bioinformatics}},
urldate = {2024-01-04},
}
\end{filecontents*}
\documentclass[11pt,letterpaper,oneside,table]{memoir}
\usepackage[backend=biber]{biblatex-chicago}
\usepackage{endnotes}
\addbibresource{\jobname.bib}
% custom image credits list; file extension .imc
\newlistof{imagecredits}{imc}{Image Credits}
\newcommand{\addtoimagecredits}{\thechapter.\arabic{figure}}
\DeclareDocumentCommand \citeimage {o m} {%
\IfNoValueTF{#1}{%
\addcontentsline{imc}{figure}{\protect\numberline{\addtoimagecredits}\citetitle{#2} by \citename{#2}{author}, retrieved from \citeurl{#2}. \citefield{#2}{note}}
}{%
\addcontentsline{imc}{figure}{\protect\numberline{\addtoimagecredits}[#1] \citetitle{#2} by \citename{#2}{author}, retrieved from \citeurl{#2}. \citefield{#2}{note}}
}%
}
\begin{document}
\citeimage{sibswissinstituteofbioinformaticsQ8WZ42TITIN_HUMANHomo}
\citeimage{galbraithStandardModelPhysics}
\citefield{sibswissinstituteofbioinformaticsQ8WZ42TITIN_HUMANHomo}{note}
\citefield{galbraithStandardModelPhysics}{note}
\imagecredits
\end{document}
Por cierto, he probado otros paquetes de notas finales, incluido enotez, pero no funcionan bien con algunos de los otros paquetes que uso, y no sé si eso haría una diferencia.