automatisch aufgezählte mehrere Fußnoten Randnotizen Tufts-Style-Book

automatisch aufgezählte mehrere Fußnoten Randnotizen Tufts-Style-Book

Ich möchte mehrere Fußnoten (Randnotizen im Tufte-Stil) automatisch aufzählen lassen, und zwar in einem verbotenen Modus. Momentan kann ich die Fußnotennummer angeben und die Notizen unter der Aufzählungsliste platzieren, aber ich möchte sie inline. Kann mir jemand helfen oder Vorschläge machen, wie das geht? MWC unten:

\documentclass{tufte-book}
\usepackage{microtype} % Improves character and word spacing
\title{Sample: \\ Book \thanks{Thanks}} % Title of the book
\author[author]{author} % Author
\publisher{publisher} % Publisher

\begin{document}

\begin{multicols}{2}
\begin{itemize}
\item sample \footnotemark[1]
\subitem sample
\item sample\footnotemark[2]
\subitem sample
\item sample
\item sample\footnotemark[3]
\subitem sample
\item sample\footnotemark[4] 
\subitem sample
\item sample
\subitem sample
\subitem sample
\subitem sample
\subitem sample
\item sample\footnotemark[5] 
\item sample\footnotemark[6]
\end{itemize}
\end{multicols}

\footnotetext[1]{sample}
\footnotetext[2]{sample}
\footnotetext[3]{sample}
\footnotetext[4]{sample}
\footnotetext[5]{sample}
\footnotetext[6]{sample}

\end{document}

verwandte Informationen