1

I am preparing a report using the achemso document class.

I do not want to write an article, hence I do not need to have the * and the footnote "whom correspondence should be addressed".

I tried \author[\empty]{name} but this messed up the text, and did not solve the problem \author[]{name} does not solve the problem either.

Any suggestions are greatly appreciated!

Dan

phx
  • 1,116
Daniel
  • 11

1 Answers1

2

The symbol is generated by the macro \acs@author@fnsymbol, which you can redefine to be empty.

Sample output

\documentclass{achemso}

\makeatletter
\def\acs@author@fnsymbol#1{}
\makeatother

\title{Title of work}
\author{B. Me}
\affiliation{Here Uni.}
\email{bme@here.edu}

\begin{document}



\end{document}
Andrew Swann
  • 95,762