I am working on compiling a LaTeX article in the format required by Elsevier. However, it worked before good, but now I have a problem of not producing the title, abstract and keyword environments. Except that, all the remaining manuscript can be generated smoothly. I tried to make a minimal example with the same preamble while having only the title, abstract and keyword. This minimal example doesn't generate a dvi output file. Therefore, I attached both the minimal example tex file and its log file to get a help.
Thanks in advance
Document Classes ⇒ elsarticle | No DVI Output
-
- Posts: 5
- Joined: Sun Apr 15, 2012 1:23 pm
elsarticle | No DVI Output
- Attachments
-
- NoDviOutput.TEX
- (429 Bytes) Downloaded 262 times
-
- NoDviOutput.log
- (10.13 KiB) Downloaded 261 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
elsarticle | No DVI Output
Hi,
welcome to the board!
For displaying the abstract, you need to use the
Stefan
welcome to the board!
For displaying the abstract, you need to use the
frontmatter
environment. For example:Code: Select all
Code, edit and compile here:
\documentclass[preprint,5p,a4paper,10pt]{elsarticle}\begin{document}\begin{frontmatter}\title{any title}\begin{abstract}some abstract\end{abstract}\begin{keyword}something\end{keyword}\end{frontmatter}main text\end{document}
LaTeX.org admin
-
- Posts: 5
- Joined: Sun Apr 15, 2012 1:23 pm
Re: elsarticle | No DVI Output
Thanks for fast help, it works like a charm.