我想在 LaTeX 中写一些单词并在页面末尾写上它的定义。
例如:
this is an example* in latex doc..
------------------------------------
*example: is ... end of the definition.
有什么想法可以实现这个目标吗?
答案1
你的意思是像这样吗?
\documentclass{article}
\begin{document}
this is an example\footnote{example: is a WORKING, compileable Tex Document}
in latex doc..
\end{document}
附注:有关 LaTeX 的特定问题,请访问 tex.stackexchange.com!
答案2
您想要实现的功能称为脚注。看看这个文档。