在 amsart 类中左对齐摘要、标题和作者

在 amsart 类中左对齐摘要、标题和作者

我想在课堂上将标题、作者及其地址重新对齐到文档的左侧amsart。我找到了一个示例,但它不起作用。

 \documentclass[11pt,a4paper,reqno,english]{amsart}

\usepackage[dvips]{graphicx}
\usepackage[margin=2cm]{geometry}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage[font=footnotesize]{subcaption}
\usepackage{multicol}
\usepackage{babel}
\usepackage{amssymb,amsmath,amsfonts}
    \usepackage[]{lipsum}

\newcommand{\blankbox}[2]{%
  \parbox{\columnwidth}{\centering
  \setlength{\fboxsep}{0pt}%
  \fbox{\raisebox{0pt}[#2]{\hspace{#1}}}}} 
  \setcounter{page}{1}


\setlength{\columnsep}{0.7cm} 
\setlength\parindent{0pt} 
\setlength{\parskip}{3pt plus1pt minus1pt} 
\renewcommand{\baselinestretch}{1}


\begin{document}



\title[Title of the manuscript goes here]{\textbf{Title of the manuscript goes here}}
\author[Author1, Author2]{Author1$^a$ \and Author2$^b$ \vspace{0.58cm}
\\ \small
$^a$Department of Industrial Engineering, \\
[email protected] \vspace{0.1cm} \\
$^b$Department of Mathematics\\
[email protected] \vspace{0.4cm} \\
\textit{(Received: $\mathit{18}$ March $\mathit{2011}$; Accepted: $\mathit{8}$ July $\mathit{2011}$; Available Online: $\mathit{30}$ August $\mathit{2011}$})}

\thanks{E-mail addresses. mmmmmmmm}


\begin{abstract}


\lipsum[1]

\vspace{7pt}
\noindent
\textbf{Keywords: }{First keyword; second keyword; ... ; fifth keyword}

\vspace{2pt}
\noindent
\textbf{AMS Classification:} Find your AMS Code from \url{http://www.ams.org/mathscinet/msc/msc2010.html}
\end{abstract}

\maketitle

\begin{multicols}{2}

\section{Introduction}
    \lipsum[1]
    \lipsum[3]
\end{multicols*}

\end{document}

我找到了一些针对文章类的命令article.cls 的命令

答案1

center这是一个将标题更改为flushleft以及\centering将作者字段更改为 的问题\raggedright

\documentclass[11pt,a4paper,reqno,english]{amsart}

\usepackage{babel}

\usepackage{graphicx,url,etoolbox}

\usepackage{lipsum}

\makeatletter
\patchcmd{\@settitle}{center}{flushleft}{}{}
\patchcmd{\@settitle}{center}{flushleft}{}{}
\patchcmd{\@setauthors}{\centering}{\raggedright}{}{}
\patchcmd{\abstract}{3pc}{0pt}{}{} % remove indentation
\makeatother

\begin{document}

\title{Title of the manuscript goes here}
\author[Author1, Author2]{Author1$^a$ \and Author2$^b$ \vspace{0.58cm}
\\ \small
$^a$Department of Industrial Engineering, \\
[email protected] \vspace{0.1cm} \\
$^b$Department of Mathematics\\
[email protected] \vspace{0.4cm} \\
\textit{(Received: 18 March 2011; 
  Accepted: 8 July 2011;
  Available Online: 30 August 2011})}

\thanks{E-mail addresses. mmmmmmmm}


\begin{abstract}
\lipsum[1]
\end{abstract}

\keywords{First keyword; second keyword; ... ; fifth keyword}
\subjclass{Find your AMS Code from \url{http://www.ams.org/mathscinet/msc/msc2010.html}}

\maketitle

\section{Introduction}

\lipsum[1]
\lipsum[3]

\end{document}

在此处输入图片描述

请注意,这$\mathit{18}$不是必需的:这些不是算术意义上的数字,而只是文字。

相关内容