将稿件提交给 Geombinatorics 期刊

将稿件提交给 Geombinatorics 期刊

我将提交一篇论文给地质组合学。我在他们的网页上找到了如何提交稿件下列:

您的论文应采用以下格式:

纸张:5.5 英寸 x 8.5 英寸;带连字符;左、右和上边距:0.35 英寸;下边距:0.5 英寸;字体:Times New Roman 可缩放 12 pt(如果没有,请使用 Times 系列的类似字体);行距:单倍;以粗体标题开头,下一行是作者姓名,然后是地址和电子邮件。请注意,感谢 MATHEMATICAL REVIEWS、ZENTRALBLATT FÜR MATHEMATIK、MATHEMATICS ABSTRACTS,世界各地的更多同事将了解我们的地理组合游戏。

实际上,我仍然对上述说明感到困惑。如果有人能为我提供一个模板 latex 代码,以便获得 Geombinatorics 提交的标准格式,那就太好了。我在这里发布了一个“最小示例”来描述我目前拥有的格式

\documentclass[12pt]{article}
\usepackage{amsmath,amsxtra,amssymb,latexsym, amscd,amsthm}


\begin{document}
\title{\textbf{\MakeUppercase{The paper title}}}
\author{Author 1\\
Address of author 1\\
e-mail address: [email protected] \\
Author 2\\
Address of author 2\\
e-mail address: [email protected] 
}

\date{}
\maketitle 
\abstract {Abstract goes here.}\\
\noindent {Keywords: }
\section{Introduction}

\section{Main Result}
\section*{Acknowledgement}
\begin{thebibliography}{99}

\end{thebibliography}
\end{document}

答案1

这可能是一种可行的设置,但我对纸张尺寸有点疑惑。

\documentclass[12pt]{article}
\usepackage{amsmath,amsxtra,amssymb,latexsym, amscd,amsthm}
\usepackage{mathptmx}
\usepackage{setspace}%
\usepackage[rmargin=0.35in,lmargin=0.35in,tmargin=0.35in,bmargin=0.5in,paperwidth=5.5in,paperheight=8.5in]{geometry}

\singlespacing
\begin{document}
\title{\textbf{\MakeUppercase{The paper title}}}
\author{Author 1\\
Address of author 1\\
e-mail address: [email protected] \\
Author 2\\
Address of author 2\\
e-mail address: [email protected] 
}

\date{}
\maketitle 
\abstract {Abstract goes here.}\\
\noindent {Keywords: }
\section{Introduction}

\section{Main Result}
\section*{Acknowledgement}
\begin{thebibliography}{99}

\end{thebibliography}
\end{document}

在此处输入图片描述

感谢 OP 的评论,最好使用article而不是scrartcleclass。

相关内容