学术摘要模板建议

学术摘要模板建议

您能给我举一些独立摘要布局的例子吗?(我指的是“学术”背景下的摘要)。我正在向一个没有提供模板的会议提交一份摘要。他们建议提交一个 word 文档或 pdf - 而我想使用 Latex 来制作它。

我在网上搜索后发现但不包括一些相关文件。我以前用过 IEEE 的,但不喜欢它——我想知道是否还有其他我遗漏的常用摘要模板。提交内容是提交给科学(工程)会议,字数为 300-400 字。

答案1

我几乎滥用了 IFAC 会议模板,只引用了摘要部分,如下所示

\documentclass{ifacconf}
\usepackage{natbib}
\begin{document}
\begin{frontmatter}
\title{Analysis of very important things\thanksref{footnoteinfo}} 
\thanks[footnoteinfo]{The author acknowledges the difficulty of publishing results}
\author[First]{Name} 
\address[First]{Return to sender (e-mail: {[email protected]} )}
\begin{abstract} 
A result that does not use the ``novel" word in its abstract.
\end{abstract}
\end{frontmatter}
\end{document}

您可以从这里。希望它能满足您的需求。

答案2

如果他们想要 Word 质量,请使用该软件包wordlike!:-) 它生成的文档几乎和原始文档一样丑陋。

但现在要认真一点:如果您不想使用 IEEE 模板(这始终是最佳选择),并且他们不提供自己的模板,只需设计您自己的简单格式以适合您自己和会议即可。无论如何,注意力应该集中在内容上。

下面是我和一位同事为我们的摘要(又名摘要) 参加应用电力电子会议 (APEC)。它完成了任务,两篇论文都被接受了。一些额外的内容被注释掉了,因为我上一篇论文不需要它们,但它们可能会派上用场。

\ProvidesClass{apecdigest}

\PassOptionsToClass{letterpaper}{article}%
\LoadClassWithOptions{article} % 12pt preferred, 10pt is minimum
\RequirePackage[margin=1in]{geometry}
\RequirePackage[english]{babel}

\RequirePackage{mathptmx}

\RequirePackage{setspace}
\doublespacing

% Only allow figures on extra pages
%\renewcommand{\topfraction}{.001}
%\setcounter{topnumber}{0}
%\setcounter{bottomnumber}{0}
%\setcounter{totalnumber}{0}
%\renewcommand{\bottomfraction}{.001}

%\renewcommand{\topfraction}{.85}%(=Maximum fraction of the page that can be occupied by floats at the top of the page)
%\renewcommand{\bottomfraction}{.85}

%\RequirePackage[format=hang,justification=justified,font=sf,labelfont=bf,singlelinecheck=false]{caption}

%\RequirePackage{subfigure}

%\clubpenalty = 10000
%\widowpenalty = 10000
%\displaywidowpenalty = 10000

\endinput

相关内容