Page LayoutKeywords not printed in Paper

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
TimHaebe
Posts: 2
Joined: Wed Jul 31, 2013 1:30 pm

Keywords not printed in Paper

Post by TimHaebe »

Hi,
i am trying to insert my keywords after the abstract, introduced in the preamble. This is the last thing to do on my very first LaTeX document. but it does not work. Researching the web doesn't help yet, only manual writing the keywords after the abstract (i don't think this is intended?!).

Code: Select all

\documentclass[journal=ancham,manuscript=article]{achemso}
%...
%...
\keywords{XXX, YYY, ZZZ}

\begin{document}
\begin{abstract}[i][Keywords:]%first try[/i]
TEXTEXTEXTEXTEXTEXTEXT
\end{abstract}

%after that, second try:
\begin{keywords}
XXX, YYY, ZZZ
%\end{keywords}
I thought the keywords will be insert automatically when defined in the preamble?!

Thanks ex ante.
Last edited by localghost on Wed Jul 31, 2013 2:04 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Keywords not printed in Paper

Post by localghost »

The keywords are not printed by design. And surprisingly the achemso manual does contain the term "keywords" never once. But the example files do. So I would consider this a lack of documentation.


Best regards and welcome to the board
Thorsten
TimHaebe
Posts: 2
Joined: Wed Jul 31, 2013 1:30 pm

Re: Keywords not printed in Paper

Post by TimHaebe »

So i have to insert them manually? According to the guidelines the keywords should be put after the abstract.
Is the \keywords entry in the preamble (of the example file) only used for reproduction? In this case i wouldn't put them in manually.

Is it also possible to combine the Artikel and the Suppl.Data in one file/folder??
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Keywords not printed in Paper

Post by localghost »

TimHaebe wrote:So i have to insert them manually? According to the guidelines the keywords should be put after the abstract. […]
Looks that way.
TimHaebe wrote:[…]Is the \keywords entry in the preamble (of the example file) only used for reproduction? In this case i wouldn't put them in manually. […]
Since I'm not a chemist I don't know. I never used this class. Perhaps write a note to the class maintainer and ask him for advice.
TimHaebe wrote:[…] Is it also possible to combine the Artikel and the Suppl.Data in one file/folder??
What do you mean?
pkawak
Posts: 1
Joined: Thu Sep 04, 2025 7:16 pm

Re: Keywords not printed in Paper

Post by pkawak »

You can have LaTeX add the keywords after the abstract by inserting

Code: Select all

\setkeys{acs}{keywords = true}
right after the \documentclass line like this

Code: Select all

\documentclass[]{achemso}
\setkeys{acs}{keywords = true}
Post Reply