将多篇文章合并为双栏格式,标题位于栏上方

将多篇文章合并为双栏格式,标题位于栏上方

我正在使用 Overleaf,并尝试设置双列文本布局的环境。我希望标题以及作者姓名位于两列的正上方。

对于第一个标题/文章,我可以正常使用它,但是每当我添加第二个标题/文章时,第二个标题不会高于两列......

所以这是主文本(我正在使用自定义字体):

 \documentclass[twocolumn]{article}
\usepackage[a4paper,margin=2cm,top=2.5cm,headheight=15pt]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fontspec}
\setmainfont{Aileron-Regular}[    Path=./Aileron/,    Extension=.otf,]
\newfontfamily\aileronbold{Aileron-Bold}[    Path=./Aileron/,    Extension=.otf,]
\newfontfamily\aileronthin{Aileron-Thin}[    Path=./Aileron/,    Extension=.otf,]
\newfontfamily\aileronitalic{Aileron-Italic}[    Path=./Aileron/,    Extension=.otf,]
\newfontfamily\aileronthinitalic{Aileron-ThinItalic}[    Path=./Aileron/,    Extension=.otf,]

\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{setspace}
\usepackage{sectsty}
\usepackage{parskip}
\usepackage{noindentafter}
\usepackage{titlesec}
\titleformat{\section}{\aileronbold\fontsize{14}{16}\selectfont}{\thesection.}{1em}{}

\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\aileronthin\leftmark \ \thepage}
\fancyhead[L]{\aileronthin Example Name}

\begin{document}

\input{article1.tex}
\input{article2.tex}

\end{document}

这是文章1.tex

\title{\fontsize{20}{24}\selectfont\textbf{Title of article one} \vspace{0.5em}}
\author{\textbf{Author 0} $\boldsymbol{\cdot}$ \textbf{Author 1}$\boldsymbol{\cdot}$ \textbf{Author 2} }
\date{}

\maketitle
\thispagestyle{fancy}

\begin{quote}
\aileronthinitalic
This is a random quote in Aileron Thin.
\end{quote}

\section{Section One}

\lipsum[1]

\subsection{Undersection Example}

\lipsum[2-5]

\section{End}

\lipsum[6]

文章2.tex看起来一样,但是标题格式不同:

\clearpage 也无济于事

我怎样才能使 title2 的格式与 title1 完全相同?我是否必须在 main.tex 中使用“combine”?我很乐意就此得到一些建议。

答案1

您可以添加几个相同\maketitle的类别ltxdoc,但要注意在每个标题之后重置部分计数器,如下所示:

\documentclass[twocolumn]{ltxdoc}
\usepackage{lipsum} % dummy text
\begin{document}
\tableofcontents
\title{AAAA}
\author{Foo}
\date{yesterday}
\maketitle
\addcontentsline{toc}{part}{AAAA}
\section{bbbb} \lipsum[1-2]
\section{cccc} \lipsum[3-4]
\title{BBBB}
\author{Bah}
\date{tomorrow}
\maketitle
\setcounter{section}{0}
\addcontentsline{toc}{part}{BBBB}
\section{dddd} \lipsum[4-5]
\section{eeee} \lipsum[5-6]
\end{document}

相关内容