[Tex/LaTex] Recommendations for an academic abstract template

examplestemplates

Can you point me to some examples of stand-alone abstract layouts? (I mean abstract in the 'academic' context here). I am submitting an abstract to a conference which does not provide a template. They suggest submitting a word doc or pdf – and I wanted to use Latex to produce this.

I've search online and found this but not some of the associated files. I've previously used the IEEE one, and dislike it – I'm wondering if there are any other commonly used abstract templates that I have missed. The submission is to a scientific (engineering) conference and is 300-400 words.

Best Answer

I have almost abused the IFAC conference template by only invoking the abstract part as the following

\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: {mr.author@tex.com} )}
\begin{abstract} 
A result that does not use the ``novel" word in its abstract.
\end{abstract}
\end{frontmatter}
\end{document}

You can download the template from here. Hope that it suits your needs.