我正在使用 IEEEtran 模板来编写会议论文。我想添加脚注。我使用了\footnote
。但是,页面底部的脚注在编号后出现缩进和点,例如1.
。理想情况下,脚注只是一个数字,没有点也没有缩进。我的脚注如下所示:
正常的脚注如下所示:
我怎样才能使脚注看起来像第二张图片一样?
这是我的脚本:
\documentclass[compsoc, conference, letterpaper, 10pt, times]{IEEEtran}
\ifCLASSOPTIONcompsoc
% IEEE Computer Society needs nocompress option
% requires cite.sty v4.0 or later (November 2003)
\usepackage[nocompress]{cite}
\else
% normal IEEE
\usepackage{cite}
\fi
\ifCLASSINFOpdf
\else
\fi
\begin{document}
\title{Test}
\section{Section Contains Footnote}
My text\footnote{My footnote}
% make the title area
\maketitle
\end{document}
答案1
只需使用footmisc
将重新定义脚注命令的包即可。以下是源代码:
\documentclass[compsoc, conference, letterpaper, 10pt, times]{IEEEtran}
\ifCLASSOPTIONcompsoc
% IEEE Computer Society needs nocompress option
% requires cite.sty v4.0 or later (November 2003)
\usepackage[nocompress]{cite}
\else
% normal IEEE
\usepackage{cite}
\fi
\ifCLASSINFOpdf
\else
\fi
\usepackage[]{footmisc}
\begin{document}
\title{Test}
\section{Section Contains Footnote}
My text\footnote{My footnote}
% make the title area
\maketitle
\end{document}
另外,您可以使用命令自定义脚注\renewcommand{\thefootnote}{options}
。例如,您可以\renewcommand{\thefootnote}{\hspace{0.5mm}\alph{footnote}}
在后面写入\usepackage[]{footmisc}
,然后将脚注编号更改为字母顺序:
此处\hspace{0.5mm}
确定实际文本与正文中脚注符号之间的间距。最佳值取决于您拥有的模板和字体选项。