左对齐摘要、标题和作者

左对齐摘要、标题和作者

我想将标题、作者和摘要重新对齐到文档的左侧。示例这个问题基本上是我想要的输出,但我不想使用回忆录环境。

梅威瑟:

\documentclass[10pt]{article}
\usepackage[]{lipsum}

\usepackage{todonotes} % add [disable] to switch off

\title{Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit}
\date{}
\author{%
    Author One$^{1}$, Author2$^{2}$\\
    $^{1}$Institution 1, I 1 City, I 1 Country\\
    $^{2}$Institution 1, I 1 City, I 1 Country\\
    \underline{$^{1}[email protected]}\\
    \underline{$^{2}[email protected] }
}

\pagestyle{empty} % disables page numbers
\thispagestyle{empty} % single page disable page number

\begin{document}
\maketitle
\textbf{Abstract:} \lipsum[3]
\end{document}

给我: 此输出

但我希望它看起来更像(在对齐和字体大小方面 - 奖励): 理想的

我尝试了各种对齐选项,但似乎无法进入 \maketitle。任何建议都值得赞赏,因为我没有做太多关于强制覆盖默认值的事情。我会使用 renewcommand 吗?

我也尝试过

\begingroup
\let\center\flushleft
\let\endcenter\endflushleft
\maketitle
\endgroup

但作者部分看起来很奇怪:

左对齐

答案1

包裹标题基本上提供了回忆录类中用于标题的功能。但是对于您来说,\maketitle直接重新定义命令更为简单。

\documentclass[10pt]{article}

\usepackage{lipsum}

\makeatletter
\renewcommand{\maketitle}{\bgroup\setlength{\parindent}{0pt}
\begin{flushleft}
  \textbf{\@title}

  \@author
\end{flushleft}\egroup
}
\makeatother

\title{Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit}
\date{}
\author{%
Author One$^{1}$, Author2$^{2}$\\
$^{1}$Institution 1, I 1 City, I 1 Country\\
    $^{2}$Institution 1, I 1 City, I 1 Country\\
    \underline{$^{1}[email protected]}\\
    \underline{$^{2}[email protected] }
}

\pagestyle{empty} % disables page numbers

\begin{document}
\maketitle
\thispagestyle{empty} % single page disable page number

\noindent
\textbf{Abstract:} \lipsum[1]
\end{document} 

示例输出

\@title标题和作者信息可在命令和中找到。由于这些命令的名称中\@author包含字符,因此必须在/组中包括重新定义。 @\maketitle\makeatletter\makeatother

我还将您的\thispagestyle命令移至了之后\begin{document},以便它生效。

您没有指定标题前的间距。您可以\bgroup在新的后面\maketitle使用 say添加垂直间距\vspace*{2cm}

答案2

这不是一个直接的答案,因为这是一个老问题,但对于那些寻求简单解决方案的人来说,在作者块中添加脚注并有选择地左对齐以及使一些文本更小,这是我在结合几个来源后最终能够做的事情:

\author{Name Someone, Name Elsewise, Name Again-Again, Name (Nickname) Last, Name B. Fine\textsuperscript{a}, Name Additional\textsuperscript{a},
  Name Other\textsuperscript{b}, and Name Capper\textsuperscript{c}\\
  \vspace{1mm}
  \begin{flushleft}
  \footnotesize\textsuperscript{a}Department of Something, University of State and City, City, ST\\
  \textsuperscript{b}Department of Some Sciences, University of State and City, City, ST\\
  \textsuperscript{c}Department of Another Thing, University of State and City, City, ST
  \end{flushleft}

}在此处输入图片描述

相关内容