- 
                Notifications
    You must be signed in to change notification settings 
- Fork 0
Open
Labels
Description
As it says, if your caption is longer then one line, you get two captions in the bibliography. UNLESS you use \bibnote[test]
Example provided.
\documentclass{article}
\usepackage{notes2bib}
\bibnotesetup{cite-function=\autocite}
\usepackage{biblatex}
\begin{document}
\begin{figure}[h]
	\caption{Left is printed in the ellipsoidal style, middle is printed as a ball\bibnote{I am printed once.}	}
\end{figure}
\begin{figure}[h]
		\caption{Left is printed in the ellipsoidal style, middle is printed as a ball and stick figure, and right is printed as a spacefilling model.\bibnote{I am printed twice.}	}
\end{figure}
\begin{figure}[h]
	\caption{Left is printed in the ellipsoidal style, middle is printed as a ball and stick figure, and right is printed as a spacefilling model.\bibnote[test]{Oddly, I am printed only once.}	}
\end{figure}
\printbibliography
\end{document}