
Como posso fazer com que o número de uma nota de rodapé apareça na margem, em vez de incorporado no texto principal? tentei
\marginpar{ \footnote{ blah } }
e o número da nota de rodapé aparece, mas não o texto da nota de rodapé.
Exemplo:
\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}
Resultado:
Também tentei o marginnote
pacote em vez de \marginpar
, mas também não funcionou.
Responder1
Você pode usar o par de comandos \footnotemark
e \footnotetext
da seguinte forma:
\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}