我正在使用tufte-handout
文档类编写讲义。我使用该multicol
包制作一个两列的词汇表。一个术语需要解释,我想使用该\sidenote
命令来引用它。不幸的是,这在环境中不起作用multicol
。可以\sidenote
修改为在环境中工作multicols
吗?
\documentclass{tufte-handout}
\usepackage{multicol} % multiple column layout facilities
\begin{document}
\begin{multicols}{2}
Vocabulary One \sidenote{A note about Vocabulary One.} \\
Vocabulary Two \\
Vocab Three \\
Vocab Four
\end{multicols}
\end{document}