两列文章模板

两列文章模板

我一直在寻找tex.stackexchange和谷歌搜索,但我找不到合适的两列模板。

有谁知道网站或者有双列文章样式 tex 文件的模板吗?

那也有参考书目部分吗?

答案1

www.latextemplates.com有 3 个不错的通用 LaTeX 文章模板。其中一个用该类制作的模板scrartcl具有以下布局:

文章模板

另一个很好的来源是www.sharelatex.com。 之间76提交给科学期刊或会议论文的论文模板,其中一些具有两列格式。您可以下载或在 ShareLaTeX 中打开并编译。

无论如何,由于大多数文章模板代码在标准article类和其他一般文章类(如、、paper等)以及特定期刊类(如等)之间是可以互换的,您可以轻松地用相同的模板替换第一行来试验大多数类(即,通过但在每种情况下在文档中搜索为每个类添加/删除的特定选项(例如,类有一个您不能在类中使用,但在任何类中都可以使用)。scrartclartikelsvjour3\docummentclass{article}\docummentclass{paper}paper\smalltableofcontentsarticle\tableofcontents

答案2

我是 LaTeX 新手,我花了几天时间寻找双栏文章模板,并尝试了主答案中提到的模板和其他十几个模板。我遇到了各种问题,最终找到了这个简洁干净的模板,我认为它也回答了这个问题(这是“双栏”在 tex stackexchange 搜索结果中排名最高的结果),许多像我这样的新手会觉得它很有用(下面的屏幕截图):

% test.tex
\title{Article Title\cite{LinkReference1}}

\author{Some Author\cite{Author1}}

\newcommand{\abstractText}{\noindent
Abstract goes here.
}

%%%%%%%%%%%%%%%%%
% Configuration %
%%%%%%%%%%%%%%%%%

\documentclass[12pt, a4paper, twocolumn]{article}
\usepackage{xurl}
\usepackage[super,comma,sort&compress]{natbib}
\usepackage{abstract}
\renewcommand{\abstractnamefont}{\normalfont\bfseries}
\renewcommand{\abstracttextfont}{\normalfont\small\itshape}
\usepackage{lipsum}

%%%%%%%%%%%%%%
% References %
%%%%%%%%%%%%%%

% If changing the name of the bib file, change \bibliography{test} at the bottom
\begin{filecontents}{test.bib}

@misc{LinkReference1,
  title        = "Link Title",
  author       = "Link Creator(s)",
  howpublished = "\url{https://example.com/}",
}

@misc{Author1,
  author       = "LastName, FirstName",
  howpublished = "\url{mailto:[email protected]}",
}

@article{ArticleReference1,
  author  = "Lastname1, Firstname1 and Lastname2, Firstname2",
  title   = "Article title",
  year    = "Year",
  journal = "Journal name",
  note    = "\url{https://dx.doi.org/...}",
}

\end{filecontents}

% Any configuration that should be done before the end of the preamble:
\usepackage{hyperref}
\hypersetup{colorlinks=true, urlcolor=blue, linkcolor=blue, citecolor=blue}

\begin{document}

%%%%%%%%%%%%
% Abstract %
%%%%%%%%%%%%

\twocolumn[
  \begin{@twocolumnfalse}
    \maketitle
    \begin{abstract}
      \abstractText
      \newline
      \newline
    \end{abstract}
  \end{@twocolumnfalse}
]

%%%%%%%%%%%
% Article %
%%%%%%%%%%%

\section{Section1Title}

This is the first sentence\cite{ArticleReference1}.

\section{Section2Title}

\lipsum[1]

%%%%%%%%%%%%%%
% References %
%%%%%%%%%%%%%%

\nocite{*}
\bibliographystyle{plain}
\bibliography{test}

\end{document}

% Create PDF on Linux:
% FILE=test; pkill -9 -f ${FILE} &>/dev/null; rm -f ${FILE}*aux ${FILE}*bbl ${FILE}*bib ${FILE}*blg ${FILE}*log ${FILE}*out ${FILE}*pdf &>/dev/null; pdflatex -halt-on-error ${FILE}; bibtex ${FILE} && pdflatex ${FILE} && pdflatex ${FILE} && (xdg-open ${FILE}.pdf &)

截屏:

示例截图

正如文件最后一行详细说明的那样,要处理内联 bib 文件,一般程序是多次运行 pdflatex,并在第一次运行后运行 bibtex。例如:

$ pdflatex -halt-on-error test
$ bibtex test
$ pdflatex test.tex
$ pdflatex test.tex
# Now open test.pdf

减少边距:

\usepackage{geometry}
\geometry{top=1cm,bottom=1.5cm,left=2cm,right=2cm,includehead,includefoot}
\setlength{\columnsep}{7mm} % Column separation width

相关内容