General ⇒ achemso | Author Affiliations
achemso | Author Affiliations
By default, it seems that it will print the long author affiliations directly beneath the names. However, when it does this it will only print the names and not the symbols that designate which affiliation goes with which author. It then prints those symbols, and the short affiliations, down at the bottom of the page as a footnote.
I would like the footnote versions to be the only version it prints, since I want to be able to quickly, and clearly identify each author's affiliation and not waste a bunch of space in the middle of the page with something that only does half the job. Alternatively, is there a way to print the affiliation symbols with the long affiliations and then omit the footnotes?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
achemso | Author Affiliations
\acs@address@list
. The code below lets it to do nothing. If the line is empty one should also set the vertical space included below the line should be zero:Code: Select all
\documentclass{achemso}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\title{Some Title}
\author{Some Author}
\affiliation{Some Affiliation}
\email{some@where.else}
\author{Some One}
\affiliation{Some Other Affiliation}
\email{some@where.too}
\makeatletter
\let\acs@address@list\relax
\setlength\acs@space@post@address{0pt}
\makeatother
\usepackage{lipsum}% for dummy text
\begin{document}
\lipsum
\end{document}
Re: achemso | Author Affiliations
achemso | Author Affiliations
\makeatletter
\let\@thanks\relax
\makeatother