どうすれば脚注を追加できますか?

どうすれば脚注を追加できますか?

\footnote内部のコマンドを使用しようとしまし\raiseboxたが、脚注のテキストが消えてしまいます。脚注を再び表示する簡単な方法はありますか? このXeLaTeXMWEをご利用ください

\documentclass[letterpaper,12pt]{article}
\usepackage[no-math]{fontspec}
\setmainfont[ Mapping=tex-tex]{Arial}
\begin{document}
Heavy\raisebox{1ex}{things are difficult to lift!\footnote{You are right!}}
\end{document}

ありがとう!

答え1

\footnotemarkとを使用して別途設定する必要があります\footnotetext \raisebox:

ここに画像の説明を入力してください

\documentclass{article}
\usepackage[paperheight=15\baselineskip]{geometry}
\begin{document}
Heavy\raisebox{1ex}{things are difficult to lift!\footnotemark}\footnotetext{You are right!}
\end{document}

関連情報