我怎样才能提出脚注?

我怎样才能提出脚注?

我尝试使用\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}

相关内容