
금지 모드에서 자동으로 열거된 여러 각주(터프티 스타일 여백 메모)를 갖고 싶습니다. 지금은 각주 번호를 지정하고 항목별 목록 아래에 메모를 배치할 수 있지만 인라인으로 지정하고 싶습니다. 누구든지 이 작업을 수행하는 방법을 돕거나 제안할 수 있습니까? 아래는 MWC입니다.
\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}