如何在页面末尾添加上标[1]和描述?有什么简单的方法吗?
[1] 在页面下方添加描述,并使用数字作为上标
答案1
您需要的是一个\footnote
。
答案2
如果 bonzi 希望将脚注标记括在方括号内(这很不常见),则\@makefnmark
需要重新定义
\documentclass{article}
\makeatletter
\renewcommand\@makefnmark{\hbox{\@textsuperscript{\normalfont[\@thefnmark]}}}
\makeatother
\begin{document}
Some text\footnote{Some test footnote}
\end{document}