diff options
author | Karl Berry <karl@freefriends.org> | 2009-09-03 18:05:01 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-09-03 18:05:01 +0000 |
commit | 51be8b5f44ee96b3e1ef17df00d6054ed0ea6589 (patch) | |
tree | e56b772c89e1e2df3f4f3dd1e7a9b9597231a68f /Master/texmf-dist/tex/latex/achemso | |
parent | fb72bda0c82db35efdc4d25f2864a127463bd880 (diff) |
achemso 3.3a (1sep09)
git-svn-id: svn://tug.org/texlive/trunk@15028 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/achemso')
37 files changed, 222 insertions, 78 deletions
diff --git a/Master/texmf-dist/tex/latex/achemso/achemso.cls b/Master/texmf-dist/tex/latex/achemso/achemso.cls index fa3b54ecfa5..49fac4214e3 100644 --- a/Master/texmf-dist/tex/latex/achemso/achemso.cls +++ b/Master/texmf-dist/tex/latex/achemso/achemso.cls @@ -16,7 +16,7 @@ \NeedsTeXFormat{LaTeX2e} \ProvidesClass{achemso} - [2009/08/13 v3.2g Submission to ACS journals] + [2009/09/01 v3.3a Submission to ACS journals] \LoadClass[12pt,letter]{article} \newcommand*\acs@warning{\ClassWarning{achemso}} \newcommand*\acs@ifundefined[1]{% @@ -28,18 +28,65 @@ \fi } \RequirePackage{xkeyval} -\define@boolkey{acs}[acs@]{abbreviations}[true]{} -\define@boolkey{acs}[acs@]{biochem}[true]{} -\define@boolkey{acs}[acs@]{email}[true]{} -\define@boolkey{acs}[acs@]{keywords}[true]{} -\define@boolkey{acs}[acs@]{super}[true]{} -\define@boolkey{acs}[acs@]{usetitle}[true]{} +\newcommand*\acs@keyval@bool[2]{% + \acs@ifundefined{acs@#1#2}{% + \acs@warning{Unknown option `#2' for key #1}% + }{% + \@nameuse{acs@#1#2}% + }% +} +\newif\ifacs@abbreviations +\newif\ifacs@biochem +\newif\ifacs@email +\newif\ifacs@keywords +\newif\ifacs@super +\newif\ifacs@usetitle +\define@key{acs}{abbreviations}[true]{% + \acs@keyval@bool{abbreviations}{#1}% +} +\define@key{acs}{biochem}[true]{% + \acs@keyval@bool{biochem}{#1}% +} +\define@key{acs}{email}[true]{% + \acs@keyval@bool{email}{#1}% +} +\define@key{acs}{keywords}[true]{% + \acs@keyval@bool{keywords}{#1}% +} +\define@key{acs}{super}[true]{% + \acs@keyval@bool{super}{#1}% +} +\define@key{acs}{usetitle}[true]{% + \acs@keyval@bool{usetitle}{#1}% +} \newcommand*\acs@journal{jacsat} +\newcommand*\acs@layout{traditional} \newcommand*\acs@manuscript{article} \newcommand*\acs@maxauthors{15} -\define@cmdkey{acs}[acs@]{journal}{} -\define@cmdkey{acs}[acs@]{manuscript}{} -\define@cmdkey{acs}[acs@]{maxauthors}{} +\define@key{acs}{journal}{% + \def\acs@journal{#1}% +} +\define@key{acs}{layout}{% + \def\acs@layout{#1}% +} +\define@key{acs}{manuscript}{% + \def\acs@manuscript{#1}% +} +\define@key{acs}{maxauthors}{% + \def\acs@maxauthors{#1}% +} +\newif\ifacs@etal@truncate +\define@key{acs}{etalmode}{% + \acs@ifundefined{acs@etal@#1}{% + \acs@warning{% + Unknown value `#1' for\MessageBreak etalmode option% + }% + }{% + \@nameuse{acs@etal@#1}% + }% +} +\newcommand*\acs@etal@firstonly{\acs@etal@truncatefalse} +\newcommand*\acs@etal@truncate{\acs@etal@truncatetrue} \define@key{acs}{biochemistry}{% \setkeys{acs}{biochem = #1}% } @@ -191,10 +238,13 @@ \immediate\write\acs@bib@file{% @Control\string{% achemso-control,^^J% - \@tempa{ctrl-use-title}{% + \@tempa{ctrl-use-title\space\space\space\space}{% \ifacs@usetitle yes\else no\fi }% - \@tempa{ctrl-etal-number}{\acs@maxauthors}% + \@tempa{ctrl-etal-number\space\space}{\acs@maxauthors}% + \@tempa{ctrl-etal-truncate}{% + \ifacs@etal@truncate yes\else no\fi + }% \string}^^J% }% \immediate\write\@auxout{% @@ -217,6 +267,7 @@ abbreviations = false, biblabel = brackets, biochem = false, + etalmode = firstonly, keywords = false, maxauthors = 15, super = true, @@ -384,16 +435,49 @@ } \newcommand*\altaffiliation[1]{% \ifnum\acs@author@cnt>\z@\relax - \global\advance\acs@affil@alt@cnt\@ne\relax - \expandafter\gdef\csname @altaffil@\@roman\acs@author@cnt\endcsname - {#1}% - \expandafter\xdef\csname @author@altaffil@\@roman\acs@author@cnt - \endcsname{\the\acs@affil@alt@cnt}% + \begingroup + \acs@altaffil@ifdup{#1}{% + \expandafter\xdef\csname @author@altaffil@\@roman\acs@author@cnt + \endcsname{\the\@tempcnta}% + }{% + \global\advance\acs@affil@alt@cnt\@ne\relax + \expandafter\gdef\csname @altaffil@\@roman\acs@author@cnt + \endcsname{#1}% + \expandafter\xdef\csname @author@altaffil@\@roman\acs@author@cnt + \endcsname{\the\acs@affil@alt@cnt}% + }% + \endgroup \else \acs@warning{Affiliation with no author}% \fi } \@onlypreamble\altaffiliation +\newcommand*\acs@altaffil@ifdup[1]{% + \def\@tempa{#1}% + \@tempswafalse + \@tempcnta\z@\relax + \ifnum\acs@affil@alt@cnt>\z@\relax + \expandafter\acs@altaffil@ifdup@aux + \fi + \if@tempswa + \expandafter\@firstoftwo + \else + \expandafter\@secondoftwo + \fi +} +\newcommand*\acs@altaffil@ifdup@aux{% + \advance\@tempcnta\@ne\relax + \expandafter\expandafter\expandafter\def\expandafter\expandafter + \expandafter\@tempb\expandafter\expandafter\expandafter + {\csname @altaffil@\@roman\@tempcnta\endcsname}% + \ifx\@tempa\@tempb + \expandafter\@tempswatrue + \else + \ifnum\@tempcnta<\acs@affil@alt@cnt\relax + \expandafter\expandafter\expandafter\acs@altaffil@ifdup@aux + \fi + \fi +} \newcommand*\email[1]{% \ifnum\acs@author@cnt>\z@\relax \expandafter\gdef\csname @email@\@roman\acs@author@cnt\endcsname @@ -518,7 +602,7 @@ \end{minipage} \end{center}% } -\newcommand\@maketitle@title@hook{} +\newcommand*\@maketitle@title@hook{} \newcommand*\acs@maketitle@suppinfo{% \ifx\acs@manuscript\acs@manuscript@suppinfo Supporting information for: @@ -558,7 +642,6 @@ \newcommand*\@thanks@hook{} \newcommand*\acs@author@list{% \@tempcnta\z@\relax - \@tempcntb\acs@affil@cnt\relax \ifnum\acs@author@cnt=\z@\relax\else \expandafter\acs@author@list@main \fi @@ -643,7 +726,7 @@ \ifnum\acs@affil@alt@cnt>\z@\relax \acs@affil@marker@cnt\@ne\relax \advance\acs@affil@marker@cnt\acs@footnote@cnt\relax - \protected@edef\acs@author@footnotes{% + \protected@edef\acs@author@fnsymbol{% \acs@author@footnotes \acs@author@fnsymbol{\acs@affil@marker@cnt}% }% @@ -673,8 +756,9 @@ }% } \newcommand*\acs@author@affil@alt@aux{% - \advance\@tempcntb\@ne\relax - \acs@affil@marker@cnt\@tempcntb\relax + \expandafter\acs@affil@marker@cnt + \csname @author@altaffil@\@roman\@tempcnta\endcsname\relax + \advance\acs@affil@marker@cnt\acs@affil@cnt\relax \advance\acs@affil@marker@cnt\acs@footnote@cnt\relax \protected@edef\acs@author@footnotes{% \acs@author@footnotes @@ -1230,6 +1314,16 @@ \setkeys{acs}{maxauthors = 0} \def\thepage{S\arabic{page}} \fi +\begingroup + \def\@tempa{twocolumn} + \ifx\acs@layout\@tempa + \aftergroup\acs@layout@shared + \fi + \def\@tempa{two-column} + \ifx\acs@layout\@tempa + \aftergroup\acs@layout@shared + \fi +\endgroup \ifacs@super \RequirePackage[sort&compress,numbers,super]{natbib} \else diff --git a/Master/texmf-dist/tex/latex/achemso/achemso.sty b/Master/texmf-dist/tex/latex/achemso/achemso.sty index 1d3b8a8e6fb..c87f198296d 100644 --- a/Master/texmf-dist/tex/latex/achemso/achemso.sty +++ b/Master/texmf-dist/tex/latex/achemso/achemso.sty @@ -16,7 +16,7 @@ \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{achemso} - [2009/08/13 v3.2g Support for ACS journals] + [2009/09/01 v3.3a Support for ACS journals] \@ifclassloaded{achemso}{% \PackageInfo{achemso}{% You have already loaded the `achemso' class:\MessageBreak @@ -39,18 +39,65 @@ \fi } \RequirePackage{xkeyval} -\define@boolkey{acs}[acs@]{abbreviations}[true]{} -\define@boolkey{acs}[acs@]{biochem}[true]{} -\define@boolkey{acs}[acs@]{email}[true]{} -\define@boolkey{acs}[acs@]{keywords}[true]{} -\define@boolkey{acs}[acs@]{super}[true]{} -\define@boolkey{acs}[acs@]{usetitle}[true]{} +\newcommand*\acs@keyval@bool[2]{% + \acs@ifundefined{acs@#1#2}{% + \acs@warning{Unknown option `#2' for key #1}% + }{% + \@nameuse{acs@#1#2}% + }% +} +\newif\ifacs@abbreviations +\newif\ifacs@biochem +\newif\ifacs@email +\newif\ifacs@keywords +\newif\ifacs@super +\newif\ifacs@usetitle +\define@key{acs}{abbreviations}[true]{% + \acs@keyval@bool{abbreviations}{#1}% +} +\define@key{acs}{biochem}[true]{% + \acs@keyval@bool{biochem}{#1}% +} +\define@key{acs}{email}[true]{% + \acs@keyval@bool{email}{#1}% +} +\define@key{acs}{keywords}[true]{% + \acs@keyval@bool{keywords}{#1}% +} +\define@key{acs}{super}[true]{% + \acs@keyval@bool{super}{#1}% +} +\define@key{acs}{usetitle}[true]{% + \acs@keyval@bool{usetitle}{#1}% +} \newcommand*\acs@journal{jacsat} +\newcommand*\acs@layout{traditional} \newcommand*\acs@manuscript{article} \newcommand*\acs@maxauthors{15} -\define@cmdkey{acs}[acs@]{journal}{} -\define@cmdkey{acs}[acs@]{manuscript}{} -\define@cmdkey{acs}[acs@]{maxauthors}{} +\define@key{acs}{journal}{% + \def\acs@journal{#1}% +} +\define@key{acs}{layout}{% + \def\acs@layout{#1}% +} +\define@key{acs}{manuscript}{% + \def\acs@manuscript{#1}% +} +\define@key{acs}{maxauthors}{% + \def\acs@maxauthors{#1}% +} +\newif\ifacs@etal@truncate +\define@key{acs}{etalmode}{% + \acs@ifundefined{acs@etal@#1}{% + \acs@warning{% + Unknown value `#1' for\MessageBreak etalmode option% + }% + }{% + \@nameuse{acs@etal@#1}% + }% +} +\newcommand*\acs@etal@firstonly{\acs@etal@truncatefalse} +\newcommand*\acs@etal@truncate{\acs@etal@truncatetrue} \define@key{acs}{biochemistry}{% \setkeys{acs}{biochem = #1}% } @@ -202,10 +249,13 @@ \immediate\write\acs@bib@file{% @Control\string{% achemso-control,^^J% - \@tempa{ctrl-use-title}{% + \@tempa{ctrl-use-title\space\space\space\space}{% \ifacs@usetitle yes\else no\fi }% - \@tempa{ctrl-etal-number}{\acs@maxauthors}% + \@tempa{ctrl-etal-number\space\space}{\acs@maxauthors}% + \@tempa{ctrl-etal-truncate}{% + \ifacs@etal@truncate yes\else no\fi + }% \string}^^J% }% \immediate\write\@auxout{% diff --git a/Master/texmf-dist/tex/latex/achemso/config/acbcct.cfg b/Master/texmf-dist/tex/latex/achemso/config/acbcct.cfg index 3fdef1a6916..65db904544f 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/acbcct.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/acbcct.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{acbcct.cfg} - [2009/08/13 v3.2g achemso configuration: ACS Chem. Biol.] + [2009/09/01 v3.3a achemso configuration: ACS Chem. Biol.] \setkeys{acs}{ biblabel = fullstop, biochem = true, diff --git a/Master/texmf-dist/tex/latex/achemso/config/achre4.cfg b/Master/texmf-dist/tex/latex/achemso/config/achre4.cfg index 15484257b41..ee2d32690b9 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/achre4.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/achre4.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{achre4.cfg} - [2009/08/13 v3.2g achemso configuration: Acc. Chem. Res.] + [2009/09/01 v3.3a achemso configuration: Acc. Chem. Res.] \setkeys{acs}{ biblabel = plain } diff --git a/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg b/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg index f3df6ae79c4..9700563f7dd 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg @@ -14,11 +14,13 @@ %% ---------------------------------------------------------------- %% -\ProvidesFile{acbcct.cfg} - [2009/08/13 v3.2g achemso configuration: ACS Nano] +\ProvidesFile{ancac3.cfg} + [2009/09/01 v3.3a achemso configuration: ACS Nano] \setkeys{acs}{ - biblabel = fullstop, - usetitle = true + biblabel = fullstop, + etalmode = truncate, + maxauthors = 10, + usetitle = true } \def\acs@type@list{article,perspective,suppinfo} \SectionNumbersOff diff --git a/Master/texmf-dist/tex/latex/achemso/config/ancham.cfg b/Master/texmf-dist/tex/latex/achemso/config/ancham.cfg index d6466aac76a..3800266cb6c 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/ancham.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/ancham.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{ancham.cfg} - [2009/08/13 v3.2g achemso configuration: Anal. Chem.] + [2009/09/01 v3.3a achemso configuration: Anal. Chem.] \def\acs@type@list{article,note,suppinfo} \SectionNumbersOff %% diff --git a/Master/texmf-dist/tex/latex/achemso/config/bcches.cfg b/Master/texmf-dist/tex/latex/achemso/config/bcches.cfg index 028080a1c2c..6a69f023c0c 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/bcches.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/bcches.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{bcches.cfg} - [2009/08/13 v3.2g achemso configuration: Bioconjugate Chem.] + [2009/09/01 v3.3a achemso configuration: Bioconjugate Chem.] \setkeys{acs}{ biochem = true, super = false, diff --git a/Master/texmf-dist/tex/latex/achemso/config/bichaw.cfg b/Master/texmf-dist/tex/latex/achemso/config/bichaw.cfg index 5a3d7ed15fa..48f48ba40bf 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/bichaw.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/bichaw.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{biochem.cfg} - [2009/08/13 v3.2g achemso configuration: Biochemistry] + [2009/09/01 v3.3a achemso configuration: Biochemistry] \setkeys{acs}{ abbreviations = true, biblabel = fullstop, diff --git a/Master/texmf-dist/tex/latex/achemso/config/bipret.cfg b/Master/texmf-dist/tex/latex/achemso/config/bipret.cfg index 760eb1bec3f..9efa9f67a4c 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/bipret.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/bipret.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{bipret.cfg} - [2009/08/13 v3.2g achemso configuration: Biotechnol. Prog.] + [2009/09/01 v3.3a achemso configuration: Biotechnol. Prog.] \setkeys{acs}{ super = false, usetitle = true diff --git a/Master/texmf-dist/tex/latex/achemso/config/bomaf6.cfg b/Master/texmf-dist/tex/latex/achemso/config/bomaf6.cfg index f4ec0ad01d1..6f9b6d0cfb9 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/bomaf6.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/bomaf6.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{bomaf6.cfg} - [2009/08/13 v3.2g achemso configuration: Biomacromolecules] + [2009/09/01 v3.3a achemso configuration: Biomacromolecules] \setkeys{acs}{ super = false, usetitle = true diff --git a/Master/texmf-dist/tex/latex/achemso/config/cgdefu.cfg b/Master/texmf-dist/tex/latex/achemso/config/cgdefu.cfg index 0fd7dcde735..0e183991da7 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/cgdefu.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/cgdefu.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{cgdefu.cfg} - [2009/08/13 v3.2g achemso configuration: Cryst. Growth Des.] + [2009/09/01 v3.3a achemso configuration: Cryst. Growth Des.] \def\acs@type@list{% article,communication,perspective,suppinfo% } diff --git a/Master/texmf-dist/tex/latex/achemso/config/chreay.cfg b/Master/texmf-dist/tex/latex/achemso/config/chreay.cfg index 34f517864a7..6a320fa8a1e 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/chreay.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/chreay.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{chreay.cfg} - [2009/08/13 v3.2g achemso configuration: Chem. Rev.] + [2009/09/01 v3.3a achemso configuration: Chem. Rev.] \def\acs@type@default{review} \def\acs@type@list{review} \def\bibsection{\acs@section{\refname}} diff --git a/Master/texmf-dist/tex/latex/achemso/config/cmatex.cfg b/Master/texmf-dist/tex/latex/achemso/config/cmatex.cfg index 0544116230a..de1567d48ed 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/cmatex.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/cmatex.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{cmatex.cfg} - [2009/08/13 v3.2g achemso configuration: Chem. Mater.] + [2009/09/01 v3.3a achemso configuration: Chem. Mater.] \SectionNumbersOff \ifx\acs@manuscript\acs@manuscript@communication \AbstractOff diff --git a/Master/texmf-dist/tex/latex/achemso/config/crtoec.cfg b/Master/texmf-dist/tex/latex/achemso/config/crtoec.cfg index b38b4c43323..d8dc5650399 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/crtoec.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/crtoec.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{crtoec.cfg} - [2009/08/13 v3.2g achemso configuration: Chem. Res. Toxicol.] + [2009/09/01 v3.3a achemso configuration: Chem. Res. Toxicol.] \setkeys{acs}{ biochem = true, super = false, diff --git a/Master/texmf-dist/tex/latex/achemso/config/enfuem.cfg b/Master/texmf-dist/tex/latex/achemso/config/enfuem.cfg index 82e11888862..95e78244299 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/enfuem.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/enfuem.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{enfuem.cfg} - [2009/08/13 v3.2g achemso configuration: Energy Fuels] + [2009/09/01 v3.3a achemso configuration: Energy Fuels] \def\acs@type@list{article,review,suppinfo} \SectionNumbersOff %% diff --git a/Master/texmf-dist/tex/latex/achemso/config/esthag.cfg b/Master/texmf-dist/tex/latex/achemso/config/esthag.cfg index b72f67136b1..0b813e31714 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/esthag.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/esthag.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{esthag.cfg} - [2009/08/13 v3.2g achemso configuration: Environ. Sci. Technol.] + [2009/09/01 v3.3a achemso configuration: Environ. Sci. Technol.] \setkeys{acs}{ super = false, usetitle = true diff --git a/Master/texmf-dist/tex/latex/achemso/config/iecred.cfg b/Master/texmf-dist/tex/latex/achemso/config/iecred.cfg index 863d914c008..6cfbe0d4df7 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/iecred.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/iecred.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{iecred.cfg} - [2009/08/13 v3.2g achemso configuration: Ind. Eng. Chem. Res.] + [2009/09/01 v3.3a achemso configuration: Ind. Eng. Chem. Res.] \setkeys{acs}{ biblabel = fullstop, usetitle = true diff --git a/Master/texmf-dist/tex/latex/achemso/config/inoraj.cfg b/Master/texmf-dist/tex/latex/achemso/config/inoraj.cfg index f62ff28aa6e..ac16788cc41 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/inoraj.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/inoraj.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{inoraj.cfg} - [2009/08/13 v3.2g achemso configuration: Inorg. Chem.] + [2009/09/01 v3.3a achemso configuration: Inorg. Chem.] \SectionNumbersOff \ifx\acs@manuscript\acs@manuscript@communication \AbstractOff diff --git a/Master/texmf-dist/tex/latex/achemso/config/jacsat.cfg b/Master/texmf-dist/tex/latex/achemso/config/jacsat.cfg index 0e9c92eb59f..4745f0e3e60 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jacsat.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jacsat.cfg @@ -15,13 +15,14 @@ %% \ProvidesFile{jacsat.cfg} - [2009/08/13 v3.2g achemso configuration: J. Am. Chem. Soc.] + [2009/09/01 v3.3a achemso configuration: J. Am. Chem. Soc.] \SectionNumbersOff \ifx\acs@manuscript\acs@manuscript@communication\else \expandafter\endinput \fi \setkeys{acs}{ - email = true + email = true, + layout = twocolumn } \SectionsOff \acs@layout@nine @@ -113,7 +114,6 @@ \capsize \acs@table } -\acs@layout@shared \AtBeginDocument{% \def\bibsection{% \@startsection diff --git a/Master/texmf-dist/tex/latex/achemso/config/jafcau.cfg b/Master/texmf-dist/tex/latex/achemso/config/jafcau.cfg index 14f1672cb24..d0155200874 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jafcau.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jafcau.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jafcau.cfg} - [2009/08/13 v3.2g achemso configuration: J. Agric. Food Chem.] + [2009/09/01 v3.3a achemso configuration: J. Agric. Food Chem.] \setkeys{acs}{ super = false, usetitle = true diff --git a/Master/texmf-dist/tex/latex/achemso/config/jcchff.cfg b/Master/texmf-dist/tex/latex/achemso/config/jcchff.cfg index 25818d18feb..50ff11f3d46 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jcchff.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jcchff.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jcchff.cfg} - [2009/08/13 v3.2g achemso configuration: J. Comb. Chem.] + [2009/09/01 v3.3a achemso configuration: J. Comb. Chem.] \def\acs@type@list{article,report,perspective,suppinfo} \SectionNumbersOff %% diff --git a/Master/texmf-dist/tex/latex/achemso/config/jceaax.cfg b/Master/texmf-dist/tex/latex/achemso/config/jceaax.cfg index e186afb15c2..a5b7d6e7232 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jceaax.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jceaax.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jceaax.cfg} - [2009/08/13 v3.2g achemso configuration: J. Chem. Eng. Data] + [2009/09/01 v3.3a achemso configuration: J. Chem. Eng. Data] \setkeys{acs}{ usetitle = true } diff --git a/Master/texmf-dist/tex/latex/achemso/config/jcisd8.cfg b/Master/texmf-dist/tex/latex/achemso/config/jcisd8.cfg index 7d44b93a9ec..f05a32ffb92 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jcisd8.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jcisd8.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jcisd8.cfg} - [2009/08/13 v3.2g achemso configuration: J. Chem. Inf. Model.] + [2009/09/01 v3.3a achemso configuration: J. Chem. Inf. Model.] \setkeys{acs}{ usetitle = true } diff --git a/Master/texmf-dist/tex/latex/achemso/config/jctcce.cfg b/Master/texmf-dist/tex/latex/achemso/config/jctcce.cfg index c7487e319ec..9d0bf8183c6 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jctcce.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jctcce.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jctcce.cfg} - [2009/08/13 v3.2g achemso configuration: J. Chem. Theory Comput.] + [2009/09/01 v3.3a achemso configuration: J. Chem. Theory Comput.] \def\acs@type@list{article,suppinfo} %% %% Originally developed by Mats Dahlgren diff --git a/Master/texmf-dist/tex/latex/achemso/config/jmcmar.cfg b/Master/texmf-dist/tex/latex/achemso/config/jmcmar.cfg index bb7f61d44ae..1f11ca3353a 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jmcmar.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jmcmar.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jmcmar.cfg} - [2009/08/13 v3.2g achemso configuration: J. Med. Chem.] + [2009/09/01 v3.3a achemso configuration: J. Med. Chem.] \setkeys{acs}{ usetitle = true } diff --git a/Master/texmf-dist/tex/latex/achemso/config/jnprdf.cfg b/Master/texmf-dist/tex/latex/achemso/config/jnprdf.cfg index 13adc9f8395..240d673f589 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jnprdf.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jnprdf.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jnprdf.cfg} - [2009/08/13 v3.2g achemso configuration: J. Nat. Prod.] + [2009/09/01 v3.3a achemso configuration: J. Nat. Prod.] \ifx\acs@manuscript\acs@manuscript@communication \AbstractOff \SectionsOff diff --git a/Master/texmf-dist/tex/latex/achemso/config/joceah.cfg b/Master/texmf-dist/tex/latex/achemso/config/joceah.cfg index 2de8ff0a7c6..0528b946696 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/joceah.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/joceah.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{joceah.cfg} - [2009/08/13 v3.2g achemso configuration: J. Org. Chem.] + [2009/09/01 v3.3a achemso configuration: J. Org. Chem.] \ifx\acs@manuscript\acs@manuscript@communication \AbstractOff \SectionsOff diff --git a/Master/texmf-dist/tex/latex/achemso/config/jpcafh.cfg b/Master/texmf-dist/tex/latex/achemso/config/jpcafh.cfg index 68fc64b5c1e..1246aa05b34 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jpcafh.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jpcafh.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jpcafh.cfg} - [2009/08/13 v3.2g achemso configuration: J. Phys. Chem. A] + [2009/09/01 v3.3a achemso configuration: J. Phys. Chem. A] \def\acs@type@list{article,letter,suppinfo} \SectionNumbersOff \captionsetup[table]{labelfont=bf,textfont=bf} diff --git a/Master/texmf-dist/tex/latex/achemso/config/jpcbfk.cfg b/Master/texmf-dist/tex/latex/achemso/config/jpcbfk.cfg index 7d886a06bcf..00bdb5604bc 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jpcbfk.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jpcbfk.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jpcbfk.cfg} - [2009/08/13 v3.2g achemso configuration: J. Phys. Chem. B] + [2009/09/01 v3.3a achemso configuration: J. Phys. Chem. B] \def\acs@type@list{article,letter,suppinfo} \SectionNumbersOff \captionsetup[table]{labelfont=bf,textfont=bf} diff --git a/Master/texmf-dist/tex/latex/achemso/config/jprobs.cfg b/Master/texmf-dist/tex/latex/achemso/config/jprobs.cfg index 5f9c8c183ff..20fd85f9e2d 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jprobs.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jprobs.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jprobs.cfg} - [2009/08/13 v3.2g achemso configuration: J. Proteome Res.] + [2009/09/01 v3.3a achemso configuration: J. Proteome Res.] \setkeys{acs}{ usetitle = true } diff --git a/Master/texmf-dist/tex/latex/achemso/config/langd5.cfg b/Master/texmf-dist/tex/latex/achemso/config/langd5.cfg index 81d30bf739f..7cda2989110 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/langd5.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/langd5.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{langd5.cfg} - [2009/08/13 v3.2g achemso configuration: Langmuir] + [2009/09/01 v3.3a achemso configuration: Langmuir] \def\acs@type@list{article,letter,suppinfo} \SectionNumbersOff %% diff --git a/Master/texmf-dist/tex/latex/achemso/config/mamobx.cfg b/Master/texmf-dist/tex/latex/achemso/config/mamobx.cfg index ec44228c1f6..5809670141c 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/mamobx.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/mamobx.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{mamobx.cfg} - [2009/08/13 v3.2g achemso configuration: Macromolecules] + [2009/09/01 v3.3a achemso configuration: Macromolecules] \SectionNumbersOff %% %% Originally developed by Mats Dahlgren diff --git a/Master/texmf-dist/tex/latex/achemso/config/mpohbp.cfg b/Master/texmf-dist/tex/latex/achemso/config/mpohbp.cfg index 5e4d67355a4..e27c7054bc4 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/mpohbp.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/mpohbp.cfg @@ -15,10 +15,8 @@ %% \ProvidesFile{mamobx.cfg} - [2009/08/13 v3.2g achemso configuration: Mol. Pharm.] -\setkeys{acs}{ - usetitle = true -} + [2009/09/01 v3.3a achemso configuration: Mol. Pharm.] +\setkeys{acs}{usetitle = true} \def\acs@type@list{article,suppinfo} \SectionNumbersOff %% diff --git a/Master/texmf-dist/tex/latex/achemso/config/nalefd.cfg b/Master/texmf-dist/tex/latex/achemso/config/nalefd.cfg index be47fe096e8..c4dd76848e7 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/nalefd.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/nalefd.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{nalefd.cfg} - [2009/08/13 v3.2g achemso configuration: Nano Lett.] + [2009/09/01 v3.3a achemso configuration: Nano Lett.] \def\acs@type@default{letter} \def\acs@type@list{letter} \SectionNumbersOff diff --git a/Master/texmf-dist/tex/latex/achemso/config/oprdfk.cfg b/Master/texmf-dist/tex/latex/achemso/config/oprdfk.cfg index 8b1fff29e1f..0a44cc01a5e 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/oprdfk.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/oprdfk.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{oprdfk.cfg} - [2009/08/13 v3.2g achemso configuration: Org. Proc. Res. Dev.] + [2009/09/01 v3.3a achemso configuration: Org. Proc. Res. Dev.] \def\acs@type@list{article,highlight,review,suppinfo} \SectionNumbersOff %% diff --git a/Master/texmf-dist/tex/latex/achemso/config/orgnd7.cfg b/Master/texmf-dist/tex/latex/achemso/config/orgnd7.cfg index 021e74a6a6f..01db5690001 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/orgnd7.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/orgnd7.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{orgnd7.cfg} - [2009/08/13 v3.2g achemso configuration: Organometallics] + [2009/09/01 v3.3a achemso configuration: Organometallics] \SectionNumbersOff %% %% Originally developed by Mats Dahlgren diff --git a/Master/texmf-dist/tex/latex/achemso/config/orlef7.cfg b/Master/texmf-dist/tex/latex/achemso/config/orlef7.cfg index f560af5d483..05d724c3aa1 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/orlef7.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/orlef7.cfg @@ -15,11 +15,11 @@ %% \ProvidesFile{orlef7.cfg} - [2009/08/13 v3.2g achemso configuration: Org. Lett.] + [2009/09/01 v3.3a achemso configuration: Org. Lett.] \def\acs@type@default{letter} \def\acs@type@list{letter} \SectionNumbersOff -\acs@layout@shared +\setkeys{acs}{layout = twocolumn} \RequirePackage{xcolor} \definecolor{orglett}{RGB}{128,0,0} %% |