提交给《应用人工智能》期刊的论文的 LaTeX 模板

提交给《应用人工智能》期刊的论文的 LaTeX 模板

我想向《应用人工智能》杂志投稿一篇论文。根据该杂志的在线作者须知 ,部分要求如下:

主文档应为单栏双倍行距文本,四边留一英寸边距,所有页面应连续编号。文本应使用 12 号 Times New Roman 字体或其他常见的 12 号字体。

向《应用人工智能》投稿应遵循《芝加哥格式手册》(第 15 版)中所述的格式指南。拼写方面应参考《韦氏大学词典》(第 11 版)。

参考文献应在文中以作者姓氏和年份括弧引用,符合《芝加哥格式手册》的指导方针:

哪一个乳胶模板比这种风格更接近?

答案1

下面应该是一个好的开始。

首先,创建一个名为的文件ApplAI.cls,如下所示(注意:大写很重要):

\NeedsTeXFormat{LaTeX2e}[2015/01/01]
\ProvidesClass{ApplAI}[2018/02/26]

%% Formatting instructions for "Applied Artificial Intelligence", from
%% http://www.tandfonline.com/action/authorSubmission?show=instructions&journalCode=uaai20

\ProcessOptions\relax
\LoadClass[12pt]{article}

\usepackage[letterpaper,margin=1in]{geometry}

% Font: Times Roman clone
\usepackage{newtxtext,newtxmath}

\usepackage[nodisplayskipstretch]{setspace}
\doublespacing  % or, possibly, "\setstretch{2.0}"

%% Load the "natbib" citation management package.
\usepackage[authoryear,round]{natbib}
%% Modify appearance of citation call-outs:
\setcitestyle{aysep={}, notesep={, }}
%% Remark: Use "\citep" to create all citation call-outs.

%% Ideally, one would create a bespoke bibliography style. However, 
%% "chicago" may be OK as a starting point.
\bibliographystyle{chicago}

%% Place all floats at very end; tables before figures:
\usepackage[tablesfirst]{endfloat} 

%% Only cross-referenced equations should be numbered:
\usepackage[showonlyrefs]{mathtools}

\endinput

\documentclass{ApplAI}通过主 tex 文件的开头加载此文档类。接下来,确保在序言中加载您可能需要的任何其他包。请尝试在文档的任何地方使用很少或不使用视觉格式。

主 tex 文件可能看起来像这样:

\documentclass{ApplAI} 

%% Load other packages you may need. E.g.
\usepackage{amssymb}
\usepackage{graphicx}
% ...
\usepackage[hyphens,spaces,obeyspaces]{url}
\usepackage[colorlinks]{hyperref}


%% Body of document:
\begin{document}
Hello World.
\end{document}

最后几点说明:

  • 期刊的说明未提及章节级标题的外观。因此,只需像在任何“普通” LaTeX 文档中一样使用 、 等即可\section\subsection

  • 用于\eqref创建方程式的交叉引用。

  • 仅用于\citep创建引文标注。编写\citep[25]{jones:2005}以创建以下形式的引文标注(Jones 2005, 25)。(“25”是页码。)

相关内容