序
在latex论文版本中,经常会有双栏格式下对摘要进行单栏设置,查阅无数博客始终无效,两天摸索下终于完工!真是不容易啊!!本文主要包括下面内容:
- 摘要单栏设置
- 摘要单栏下脚注消失问题
- 如何添加脚注
- 脚注无序号+有序号共存设置
- 通讯作者加邮箱图标
1. 摘要单栏设置
latex是双栏格式设置时,参考下面设置实现摘要单栏设置
\documentclass[twocolumn]{article}
\begin{document}
...
\title{THIS IS A TITLE}
\author{GOD}
# 设置单栏摘要
\twocolumn[
\begin{@twocolumnfalse}
\maketitle #maketitle必须添加在这里,否则摘要会跳转到下一页
\begin{abstract}
I am writing an abstract........
\end{abstract}
\end{@twocolumnfalse}
]
balabalabalabalabalabala.....
\end{document}
2. 摘要单栏下脚注消失问题
在添加上述单栏摘要设置以后,脚注就会消失,原因未知,只能另寻办法,可以添加如下设置:
\documentclass[twocolumn]{article}
% 添加脚注预定义设置,换行以后可实现格式对齐
\usepackage[misc]{ifsym}
\newcommand\blfootnote[1]{%
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup
}
% 添加脚注对齐设置
\usepackage[hang]{footmisc}
\begin{document}
\title{THIS IS A TITLE}
\author{GOD}
% footnote
{
%blfootnote主要是设置无序问题
\blfootnote{
%对齐微调
\hspace{-0.15in}\Letter \,GOD~GOD
\newline GOD@gmail.com
\newline}
\footnotetext[1]{School of Heaven, Heaven University, Beijing, China 100191.
}
}
下图为未添加与添加
\usepackage[hang]{footmisc}
的对比图:
3. 脚注无序号+有序号共存设置
下面单独分析上一节中的这部分:
....
% footnote
{
%blfootnote主要是设置无序问题
\blfootnote{
%对齐微调
\hspace{-0.15in}\Letter \,GOD~GOD
\newline GOD@gmail.com
\newline}
\footnotetext[1]{School of Heaven, Heaven University, Beijing, China 100191.
}
}
如果将其改为
....
% footnote
{
%blfootnote主要是设置无序问题
\footnotetext{
%对齐微调
\hspace{-0.15in}\Letter \,GOD~GOD
\newline GOD@gmail.com
\newline}
\footnotetext[1]{School of Heaven, Heaven University, Beijing, China 100191.
}
}
那么,将 bffootnote改为标准的footnotetext,实际效果按上述顺序分别为
可以看出标准设置下,前面是0开始的,因为脚注是0-9等标注的,所以,可以使用预设置将脚注前面的标号取消。