
Как сделать так, чтобы номер сноски отображался на полях, а не был встроен в основной текст? Я пробовал
\marginpar{ \footnote{ blah } }
и отображается номер сноски, но не текст сноски.
Пример:
\documentclass{article}
\begin{document}
Here is a normal footnote.\footnote{My footnote text.}
Next we'll place a note in the margin.\marginpar{Margin note here.}
Can we put a footnote number in the margin,
with the footnote text at the bottom of the page?\marginpar{\footnote{I hope so!}}
\end{document}
Результат:
Я также попробовал marginnote
пакет вместо \marginpar
, но это тоже не сработало.
решение1
Вы можете использовать пару команд \footnotemark
и \footnotetext
следующим образом:
\documentclass{article}
\newcommand{\marginfootnote}[1]{\marginpar{\footnotemark}\footnotetext{#1}}
\begin{document}
Can we put a footnote number in the margin, with the footnote text at
the bottom of the page?\marginfootnote{I hope so!}
\end{document}