自定义脚注与单词的距离

自定义脚注与单词的距离

我想在正文中(而不是页面底部)的脚注数与单词之间添加空格。让我告诉你我在寻找什么。考虑以下代码:

\documentclass{article}

\usepackage{blindtext}

\begin{document}

\blindtext
\footnote{a footnote}
\blindtext  

\end{document}

它给出了一个简单的文本。以下是我想要的: 在此处输入图片描述

我想将脚注的编号打印得比实际编号稍微高一点。我该怎么做?谢谢。

答案1

您确定要上标吗?

\documentclass{article}
\usepackage{blindtext}

\makeatletter
\def\@makefnmark{\raisebox{1ex}{\@textsuperscript{\normalfont\@thefnmark}}}
\makeatother

\begin{document}

\blindtext
\footnote{a footnote}
\blindtext  

\end{document}

相关内容