我該如何提出腳註?

我該如何提出腳註?

我嘗試使用\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}

相關內容