Latex雙欄格式下的摘要單欄+腳註設定
阿新 • • 發佈:2018-11-02
序
在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 [email protected]
\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 [email protected]
\newline}
\footnotetext[1]{School of Heaven, Heaven University, Beijing, China 100191.
}
}
如果將其改為
....
% footnote
{
%blfootnote主要是設定無序問題
\footnotetext{
%對齊微調
\hspace{-0.15in}\Letter \,GOD~GOD
\newline [email protected]
\newline}
\footnotetext[1]{School of Heaven, Heaven University, Beijing, China 100191.
}
}
那麼,將 bffootnote改為標準的footnotetext,實際效果按上述順序分別為
可以看出標準設定下,前面是0開始的,因為腳註是0-9等標註的,所以,可以使用預設定將腳註前面的標號取消。