diff options
author | Karl Berry <karl@freefriends.org> | 2010-03-05 00:30:25 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-03-05 00:30:25 +0000 |
commit | e3b13c81baf60b28365c184beecd5bca20409b7e (patch) | |
tree | 25e4ea2f2055a3bd1712d2c249785dd4af7587a9 /Master | |
parent | 09957f78ef831e10c41f8b12329282e8bcef03e3 (diff) |
achemso update (4mar10)
git-svn-id: svn://tug.org/texlive/trunk@17315 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
46 files changed, 166 insertions, 118 deletions
diff --git a/Master/texmf-dist/bibtex/bst/achemso/achemso.bst b/Master/texmf-dist/bibtex/bst/achemso/achemso.bst index 07647db6a23..857bbc639c8 100644 --- a/Master/texmf-dist/bibtex/bst/achemso/achemso.bst +++ b/Master/texmf-dist/bibtex/bst/achemso/achemso.bst @@ -289,9 +289,6 @@ FUNCTION {bbl.phd} FUNCTION {bbl.submitted} { "submitted for publication" } -FUNCTION {bbl.techreport} -{ "Technical Report" } - FUNCTION {bbl.version} { "version" } @@ -934,6 +931,17 @@ FUNCTION {format.title.in} if$ } +FUNCTION {format.org.address} +{ organization empty$ + { "" } + { address empty$ + { organization } + { organization add.colon address *} + if$ + } + if$ +} + FUNCTION {format.pub.address} { publisher empty$ { "" } @@ -1253,15 +1261,17 @@ FUNCTION {techreport} title format.title "title" output.check new.block type empty$ - 'bbl.techreport - 'type - if$ - number empty$ 'skip$ - { number tie.or.space.connect } + { + type + number empty$ + 'skip$ + { number tie.or.space.connect } + if$ + output + } if$ - output - format.pub.address output + format.org.address output format.bdate "year" output.check pages empty$ 'skip$ diff --git a/Master/texmf-dist/bibtex/bst/achemso/biochem.bst b/Master/texmf-dist/bibtex/bst/achemso/biochem.bst index b4d4d65bea0..de07e4cb6fa 100644 --- a/Master/texmf-dist/bibtex/bst/achemso/biochem.bst +++ b/Master/texmf-dist/bibtex/bst/achemso/biochem.bst @@ -289,9 +289,6 @@ FUNCTION {bbl.phd} FUNCTION {bbl.submitted} { "submitted for publication" } -FUNCTION {bbl.techreport} -{ "Technical Report" } - FUNCTION {bbl.version} { "version" } @@ -939,6 +936,17 @@ FUNCTION {format.title.in} if$ } +FUNCTION {format.org.address} +{ organization empty$ + { "" } + { address empty$ + { organization } + { organization add.colon address *} + if$ + } + if$ +} + FUNCTION {format.pub.address} { publisher empty$ { "" } @@ -1259,15 +1267,17 @@ FUNCTION {techreport} title format.title "title" output.check new.block type empty$ - 'bbl.techreport - 'type - if$ - number empty$ 'skip$ - { number tie.or.space.connect } + { + type + number empty$ + 'skip$ + { number tie.or.space.connect } + if$ + output + } if$ - output - format.pub.address output + format.org.address output format.bdate "year" output.check pages empty$ 'skip$ diff --git a/Master/texmf-dist/doc/latex/achemso/achemso-demo.bib b/Master/texmf-dist/doc/latex/achemso/achemso-demo.bib index 6c7c0daf9bc..e5c882839ac 100644 --- a/Master/texmf-dist/doc/latex/achemso/achemso-demo.bib +++ b/Master/texmf-dist/doc/latex/achemso/achemso-demo.bib @@ -74,12 +74,21 @@ title = {{A}dvanced {I}norganic {C}hemistry}, publisher = {Wiley}, year = {1999}, - author = {Cotton, Frank Albert and Wilkinson, Geoffrery and + author = {Cotton, Frank Albert and Wilkinson, Geoffrey and Murillio, Carlos A. and Bochmann, Manfred}, - address = {Chichester}, + address = {Chichester, United Kingdom}, edition = {6}, } +@TECHREPORT{EuropeanCommission2008, + address = {Brussels, Belgium}, + organization = {European Commission}, + title = {Communication from the European Commission to the + European Council and the European Parliament: + 20 20 by 2020: Europe's climate change opportunity}, + year = {2008} +} + @MANUAL{Pople2003, title = {{G}aussian 03}, author = {M.~J. Frisch and G.~W. Trucks and H.~B. Schlegel and G.~E. Scuseria diff --git a/Master/texmf-dist/doc/latex/achemso/achemso-demo.pdf b/Master/texmf-dist/doc/latex/achemso/achemso-demo.pdf Binary files differindex 873b8e06ed9..db7299fc48d 100644 --- a/Master/texmf-dist/doc/latex/achemso/achemso-demo.pdf +++ b/Master/texmf-dist/doc/latex/achemso/achemso-demo.pdf diff --git a/Master/texmf-dist/doc/latex/achemso/achemso-demo.tex b/Master/texmf-dist/doc/latex/achemso/achemso-demo.tex index 4c2bd832885..c2b7ea3f8f1 100644 --- a/Master/texmf-dist/doc/latex/achemso/achemso-demo.tex +++ b/Master/texmf-dist/doc/latex/achemso/achemso-demo.tex @@ -137,9 +137,9 @@ handled. The class loads \textsf{natbib}, and also the appropriate bibliography style. References can be made using the normal method; the citation should be placed before any punctuation, as the class will move it if using a superscript -citation style \cite{Mena2000,Abernethy2003}. The use of -\textsf{natbib} allows the use of the various citation commands -of that package: \citeauthor{Abernethy2003} have shown +citation style \cite{Mena2000,Abernethy2003,EuropeanCommission2008}. +The use of \textsf{natbib} allows the use of the various citation +commands of that package: \citeauthor{Abernethy2003} have shown something, in \citeyear{Cotton1999}, or as given by Ref.~\citenum{Mena2000}. Long lists of authors will be automatically truncated in most article formats, but not in diff --git a/Master/texmf-dist/doc/latex/achemso/achemso.pdf b/Master/texmf-dist/doc/latex/achemso/achemso.pdf Binary files differindex fca56a7d9a5..bcb089f7efb 100644 --- a/Master/texmf-dist/doc/latex/achemso/achemso.pdf +++ b/Master/texmf-dist/doc/latex/achemso/achemso.pdf diff --git a/Master/texmf-dist/source/latex/achemso/achemso.dtx b/Master/texmf-dist/source/latex/achemso/achemso.dtx index 7385c4493a8..85dd19fe2cf 100644 --- a/Master/texmf-dist/source/latex/achemso/achemso.dtx +++ b/Master/texmf-dist/source/latex/achemso/achemso.dtx @@ -901,7 +901,7 @@ This work consists of the file achemso.dtx % \begin{macrocode} %<*class> \ProvidesClass{achemso} - [2010/02/07 v3.4c Submission to ACS journals] + [2010/03/03 v3.4d Submission to ACS journals] \LoadClass[12pt,letter]{article} % \end{macrocode} % @@ -921,7 +921,7 @@ This work consists of the file achemso.dtx % \begin{macrocode} %<*package> \ProvidesPackage{achemso} - [2010/02/07 v3.4c Support for ACS journals] + [2010/03/03 v3.4d Support for ACS journals] \@ifclassloaded{achemso}{% \PackageInfo{achemso}{% You have already loaded the `achemso' class:\MessageBreak @@ -3404,7 +3404,7 @@ This work consists of the file achemso.dtx % \begin{macrocode} %<*achre4> \ProvidesFile{achre4.cfg} - [2010/02/07 v3.4c achemso configuration: Acc. Chem. Res.] + [2010/03/03 v3.4d achemso configuration: Acc. Chem. Res.] \setkeys{acs}{ biblabel = plain, usetitle = true @@ -3414,7 +3414,7 @@ This work consists of the file achemso.dtx %</achre4> %<*acbcct> \ProvidesFile{acbcct.cfg} - [2010/02/07 v3.4c achemso configuration: ACS Chem. Biol.] + [2010/03/03 v3.4d achemso configuration: ACS Chem. Biol.] \setkeys{acs}{ biblabel = fullstop, biochem = true, @@ -3426,7 +3426,7 @@ This work consists of the file achemso.dtx %</acbcct> %<*ancac3> \ProvidesFile{ancac3.cfg} - [2010/02/07 v3.4c achemso configuration: ACS Nano] + [2010/03/03 v3.4d achemso configuration: ACS Nano] \setkeys{acs}{ biblabel = fullstop, etalmode = truncate, @@ -3438,13 +3438,13 @@ This work consists of the file achemso.dtx %</ancac3> %<*ancham> \ProvidesFile{ancham.cfg} - [2010/02/07 v3.4c achemso configuration: Anal. Chem.] + [2010/03/03 v3.4d achemso configuration: Anal. Chem.] \def\acs@type@list{article,note,suppinfo} \SectionNumbersOff %</ancham> %<*bichaw> \ProvidesFile{biochem.cfg} - [2010/02/07 v3.4c achemso configuration: Biochemistry] + [2010/03/03 v3.4d achemso configuration: Biochemistry] \setkeys{acs}{ abbreviations = true, biblabel = fullstop, @@ -3494,7 +3494,7 @@ This work consists of the file achemso.dtx %</bichaw> %<*bcches> \ProvidesFile{bcches.cfg} - [2010/02/07 v3.4c achemso configuration: Bioconjugate Chem.] + [2010/03/03 v3.4d achemso configuration: Bioconjugate Chem.] \setkeys{acs}{ biochem = true, super = false, @@ -3510,7 +3510,7 @@ This work consists of the file achemso.dtx %\changes{v3.4c}{2010/02/07}{Superscript citations for % \emph{Biomacromolecules}} \ProvidesFile{bomaf6.cfg} - [2010/02/07 v3.4c achemso configuration: Biomacromolecules] + [2010/03/03 v3.4d achemso configuration: Biomacromolecules] \setkeys{acs}{usetitle = true} \def\acs@type@list{article,comment,communication,note,review,suppinfo} \SectionNumbersOff @@ -3518,7 +3518,7 @@ This work consists of the file achemso.dtx %</bomaf6> %<*bipret> \ProvidesFile{bipret.cfg} - [2010/02/07 v3.4c achemso configuration: Biotechnol. Prog.] + [2010/03/03 v3.4d achemso configuration: Biotechnol. Prog.] \setkeys{acs}{ super = false, usetitle = true @@ -3528,7 +3528,7 @@ This work consists of the file achemso.dtx %</bipret> %<*crtoec> \ProvidesFile{crtoec.cfg} - [2010/02/07 v3.4c achemso configuration: Chem. Res. Toxicol.] + [2010/03/03 v3.4d achemso configuration: Chem. Res. Toxicol.] \setkeys{acs}{ biochem = true, super = false, @@ -3541,7 +3541,7 @@ This work consists of the file achemso.dtx %</crtoec> %<*chreay> \ProvidesFile{chreay.cfg} - [2010/02/07 v3.4c achemso configuration: Chem. Rev.] + [2010/03/03 v3.4d achemso configuration: Chem. Rev.] \def\acs@type@default{review} \def\acs@type@list{review} % \end{macrocode} @@ -3552,7 +3552,7 @@ This work consists of the file achemso.dtx %<*cmatex> % \begin{macrocode} \ProvidesFile{cmatex.cfg} - [2010/02/07 v3.4c achemso configuration: Chem. Mater.] + [2010/03/03 v3.4d achemso configuration: Chem. Mater.] \SectionNumbersOff \ifx\acs@manuscript\acs@manuscript@communication \AbstractOff @@ -3561,7 +3561,7 @@ This work consists of the file achemso.dtx %</cmatex> %<*cgdefu> \ProvidesFile{cgdefu.cfg} - [2010/02/07 v3.4c achemso configuration: Cryst. Growth Des.] + [2010/03/03 v3.4d achemso configuration: Cryst. Growth Des.] \def\acs@type@list{% article,communication,perspective,suppinfo% } @@ -3572,13 +3572,13 @@ This work consists of the file achemso.dtx %</cgdefu> %<*enfuem> \ProvidesFile{enfuem.cfg} - [2010/02/07 v3.4c achemso configuration: Energy Fuels] + [2010/03/03 v3.4d achemso configuration: Energy Fuels] \def\acs@type@list{article,review,suppinfo} \SectionNumbersOff %</enfuem> %<*esthag> \ProvidesFile{esthag.cfg} - [2010/02/07 v3.4c achemso configuration: Environ. Sci. Technol.] + [2010/03/03 v3.4d achemso configuration: Environ. Sci. Technol.] \setkeys{acs}{ super = false, usetitle = true @@ -3588,7 +3588,7 @@ This work consists of the file achemso.dtx %</esthag> %<*iecred> \ProvidesFile{iecred.cfg} - [2010/02/07 v3.4c achemso configuration: Ind. Eng. Chem. Res.] + [2010/03/03 v3.4d achemso configuration: Ind. Eng. Chem. Res.] \setkeys{acs}{ biblabel = fullstop, usetitle = true @@ -3597,7 +3597,7 @@ This work consists of the file achemso.dtx %</iecred> %<*inoraj> \ProvidesFile{inoraj.cfg} - [2010/02/07 v3.4c achemso configuration: Inorg. Chem.] + [2010/03/03 v3.4d achemso configuration: Inorg. Chem.] \SectionNumbersOff \ifx\acs@manuscript\acs@manuscript@communication \AbstractOff @@ -3612,7 +3612,7 @@ This work consists of the file achemso.dtx % \begin{macrocode} %<*jacsat> \ProvidesFile{jacsat.cfg} - [2010/02/07 v3.4c achemso configuration: J. Am. Chem. Soc.] + [2010/03/03 v3.4d achemso configuration: J. Am. Chem. Soc.] \SectionNumbersOff \ifx\acs@manuscript\acs@manuscript@communication\else \expandafter\endinput @@ -3815,7 +3815,7 @@ This work consists of the file achemso.dtx % \begin{macrocode} %<*jafcau> \ProvidesFile{jafcau.cfg} - [2010/02/07 v3.4c achemso configuration: J. Agric. Food Chem.] + [2010/03/03 v3.4d achemso configuration: J. Agric. Food Chem.] \setkeys{acs}{ super = false, usetitle = true @@ -3825,7 +3825,7 @@ This work consists of the file achemso.dtx %</jafcau> %<*jceaax> \ProvidesFile{jceaax.cfg} - [2010/02/07 v3.4c achemso configuration: J. Chem. Eng. Data] + [2010/03/03 v3.4d achemso configuration: J. Chem. Eng. Data] \setkeys{acs}{ usetitle = true } @@ -3834,7 +3834,7 @@ This work consists of the file achemso.dtx %</jceaax> %<*jcisd8> \ProvidesFile{jcisd8.cfg} - [2010/02/07 v3.4c achemso configuration: J. Chem. Inf. Model.] + [2010/03/03 v3.4d achemso configuration: J. Chem. Inf. Model.] \setkeys{acs}{ usetitle = true } @@ -3843,18 +3843,18 @@ This work consists of the file achemso.dtx %</jcisd8> %<*jctcce> \ProvidesFile{jctcce.cfg} - [2010/02/07 v3.4c achemso configuration: J. Chem. Theory Comput.] + [2010/03/03 v3.4d achemso configuration: J. Chem. Theory Comput.] \def\acs@type@list{article,suppinfo} %</jctcce> %<*jcchff> \ProvidesFile{jcchff.cfg} - [2010/02/07 v3.4c achemso configuration: J. Comb. Chem.] + [2010/03/03 v3.4d achemso configuration: J. Comb. Chem.] \def\acs@type@list{article,report,perspective,suppinfo} \SectionNumbersOff %</jcchff> %<*jmcmar> \ProvidesFile{jmcmar.cfg} - [2010/02/07 v3.4c achemso configuration: J. Med. Chem.] + [2010/03/03 v3.4d achemso configuration: J. Med. Chem.] \setkeys{acs}{ usetitle = true } @@ -3863,7 +3863,7 @@ This work consists of the file achemso.dtx %</jmcmar> %<*jnprdf> \ProvidesFile{jnprdf.cfg} - [2010/02/07 v3.4c achemso configuration: J. Nat. Prod.] + [2010/03/03 v3.4d achemso configuration: J. Nat. Prod.] \ifx\acs@manuscript\acs@manuscript@communication \AbstractOff \SectionsOff @@ -3873,7 +3873,7 @@ This work consists of the file achemso.dtx %\changes{v3.3e}{2009/11/18}{Formatting for \emph{J.\ Org.\ Chem}.\ % schemes corrected} \ProvidesFile{joceah.cfg} - [2010/02/07 v3.4c achemso configuration: J. Org. Chem.] + [2010/03/03 v3.4d achemso configuration: J. Org. Chem.] \ifx\acs@manuscript\acs@manuscript@communication \AbstractOff \SectionsOff @@ -3884,7 +3884,7 @@ This work consists of the file achemso.dtx %</joceah> %<*jpcafh> \ProvidesFile{jpcafh.cfg} - [2010/02/07 v3.4c achemso configuration: J. Phys. Chem. A] + [2010/03/03 v3.4d achemso configuration: J. Phys. Chem. A] \def\acs@type@list{article,suppinfo} \SectionNumbersOff \captionsetup[table]{labelfont=bf,textfont=bf} @@ -3895,7 +3895,7 @@ This work consists of the file achemso.dtx %</jpcafh> %<*jpcbfk> \ProvidesFile{jpcbfk.cfg} - [2010/02/07 v3.4c achemso configuration: J. Phys. Chem. B] + [2010/03/03 v3.4d achemso configuration: J. Phys. Chem. B] \def\acs@type@list{article,suppinfo} \SectionNumbersOff \captionsetup[table]{labelfont=bf,textfont=bf} @@ -3903,7 +3903,7 @@ This work consists of the file achemso.dtx %</jpcbfk> %<*jpccck> \ProvidesFile{jpccck.cfg} - [2010/02/07 v3.4c achemso configuration: J. Phys. Chem. C] + [2010/03/03 v3.4d achemso configuration: J. Phys. Chem. C] \def\acs@type@list{article,suppinfo} \SectionNumbersOff \captionsetup[table]{labelfont=bf,textfont=bf} @@ -3915,7 +3915,7 @@ This work consists of the file achemso.dtx % \begin{macrocode} %<*jpclcd> \ProvidesFile{jpclcd.cfg} - [2010/02/07 v3.4c achemso configuration: J. Phys. Chem. Lett.] + [2010/03/03 v3.4d achemso configuration: J. Phys. Chem. Lett.] \setkeys{acs}{usetitle = true} \def\acs@type@default{letter} \def\acs@type@list{letter} @@ -3925,7 +3925,7 @@ This work consists of the file achemso.dtx %</jpclcd> %<*jprobs> \ProvidesFile{jprobs.cfg} - [2010/02/07 v3.4c achemso configuration: J. Proteome Res.] + [2010/03/03 v3.4d achemso configuration: J. Proteome Res.] \setkeys{acs}{ usetitle = true } @@ -3934,32 +3934,32 @@ This work consists of the file achemso.dtx %</jprobs> %<*langd5> \ProvidesFile{langd5.cfg} - [2010/02/07 v3.4c achemso configuration: Langmuir] + [2010/03/03 v3.4d achemso configuration: Langmuir] \def\acs@type@list{article,letter,suppinfo} \SectionNumbersOff %</langd5> %<*mamobx> \ProvidesFile{mamobx.cfg} - [2010/02/07 v3.4c achemso configuration: Macromolecules] + [2010/03/03 v3.4d achemso configuration: Macromolecules] \SectionNumbersOff %</mamobx> %<*mpohbp> \ProvidesFile{mamobx.cfg} - [2010/02/07 v3.4c achemso configuration: Mol. Pharm.] + [2010/03/03 v3.4d achemso configuration: Mol. Pharm.] \setkeys{acs}{usetitle = true} \def\acs@type@list{article,suppinfo} \SectionNumbersOff %</mpohbp> %<*nalefd> \ProvidesFile{nalefd.cfg} - [2010/02/07 v3.4c achemso configuration: Nano Lett.] + [2010/03/03 v3.4d achemso configuration: Nano Lett.] \def\acs@type@default{letter} \def\acs@type@list{letter} \SectionNumbersOff %</nalefd> %<*orlef7> \ProvidesFile{orlef7.cfg} - [2010/02/07 v3.4c achemso configuration: Org. Lett.] + [2010/03/03 v3.4d achemso configuration: Org. Lett.] \def\acs@type@default{letter} \def\acs@type@list{letter} \SectionNumbersOff @@ -3969,13 +3969,13 @@ This work consists of the file achemso.dtx %</orlef7> %<*oprdfk> \ProvidesFile{oprdfk.cfg} - [2010/02/07 v3.4c achemso configuration: Org. Proc. Res. Dev.] + [2010/03/03 v3.4d achemso configuration: Org. Proc. Res. Dev.] \def\acs@type@list{article,highlight,review,suppinfo} \SectionNumbersOff %</oprdfk> %<*orgnd7> \ProvidesFile{orgnd7.cfg} - [2010/02/07 v3.4c achemso configuration: Organometallics] + [2010/03/03 v3.4d achemso configuration: Organometallics] \SectionNumbersOff %</orgnd7> % \end{macrocode} @@ -4122,9 +4122,9 @@ handled. The class loads \textsf{natbib}, and also the appropriate bibliography style. References can be made using the normal method; the citation should be placed before any punctuation, as the class will move it if using a superscript -citation style \cite{Mena2000,Abernethy2003}. The use of -\textsf{natbib} allows the use of the various citation commands -of that package: \citeauthor{Abernethy2003} have shown +citation style \cite{Mena2000,Abernethy2003,EuropeanCommission2008}. +The use of \textsf{natbib} allows the use of the various citation +commands of that package: \citeauthor{Abernethy2003} have shown something, in \citeyear{Cotton1999}, or as given by Ref.~\citenum{Mena2000}. Long lists of authors will be automatically truncated in most article formats, but not in @@ -4651,9 +4651,6 @@ FUNCTION {bbl.phd} FUNCTION {bbl.submitted} { "submitted for publication" } -FUNCTION {bbl.techreport} -{ "Technical Report" } - FUNCTION {bbl.version} { "version" } @@ -5320,6 +5317,17 @@ FUNCTION {format.title.in} if$ } +FUNCTION {format.org.address} +{ organization empty$ + { "" } + { address empty$ + { organization } + { organization add.colon address *} + if$ + } + if$ +} + FUNCTION {format.pub.address} { publisher empty$ { "" } @@ -5641,15 +5649,17 @@ FUNCTION {techreport} title format.title "title" output.check new.block type empty$ - 'bbl.techreport - 'type - if$ - number empty$ 'skip$ - { number tie.or.space.connect } + { + type + number empty$ + 'skip$ + { number tie.or.space.connect } + if$ + output + } if$ - output - format.pub.address output + format.org.address output format.bdate "year" output.check pages empty$ 'skip$ @@ -6086,12 +6096,21 @@ EXECUTE { end.bib } title = {{A}dvanced {I}norganic {C}hemistry}, publisher = {Wiley}, year = {1999}, - author = {Cotton, Frank Albert and Wilkinson, Geoffrery and + author = {Cotton, Frank Albert and Wilkinson, Geoffrey and Murillio, Carlos A. and Bochmann, Manfred}, - address = {Chichester}, + address = {Chichester, United Kingdom}, edition = {6}, } +@TECHREPORT{EuropeanCommission2008, + address = {Brussels, Belgium}, + organization = {European Commission}, + title = {Communication from the European Commission to the + European Council and the European Parliament: + 20 20 by 2020: Europe's climate change opportunity}, + year = {2008} +} + @MANUAL{Pople2003, title = {{G}aussian 03}, author = {M.~J. Frisch and G.~W. Trucks and H.~B. Schlegel and G.~E. Scuseria diff --git a/Master/texmf-dist/tex/latex/achemso/achemso.cls b/Master/texmf-dist/tex/latex/achemso/achemso.cls index 5f8da81f1ab..ff72bbf9ef4 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} - [2010/02/07 v3.4c Submission to ACS journals] + [2010/03/03 v3.4d Submission to ACS journals] \LoadClass[12pt,letter]{article} \newcommand*\acs@warning{\ClassWarning{achemso}} \newcommand*\acs@ifundefined[1]{% diff --git a/Master/texmf-dist/tex/latex/achemso/achemso.sty b/Master/texmf-dist/tex/latex/achemso/achemso.sty index 67505850297..aff3a9d825a 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} - [2010/02/07 v3.4c Support for ACS journals] + [2010/03/03 v3.4d Support for ACS journals] \@ifclassloaded{achemso}{% \PackageInfo{achemso}{% You have already loaded the `achemso' class:\MessageBreak diff --git a/Master/texmf-dist/tex/latex/achemso/config/acbcct.cfg b/Master/texmf-dist/tex/latex/achemso/config/acbcct.cfg index d538454a1ac..21992348a6e 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} - [2010/02/07 v3.4c achemso configuration: ACS Chem. Biol.] + [2010/03/03 v3.4d 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 8901f9b2022..154e633caf9 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} - [2010/02/07 v3.4c achemso configuration: Acc. Chem. Res.] + [2010/03/03 v3.4d achemso configuration: Acc. Chem. Res.] \setkeys{acs}{ biblabel = plain, usetitle = true diff --git a/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg b/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg index 0b5d1bab0d6..fc3dd62e17e 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{ancac3.cfg} - [2010/02/07 v3.4c achemso configuration: ACS Nano] + [2010/03/03 v3.4d achemso configuration: ACS Nano] \setkeys{acs}{ biblabel = fullstop, etalmode = truncate, diff --git a/Master/texmf-dist/tex/latex/achemso/config/ancham.cfg b/Master/texmf-dist/tex/latex/achemso/config/ancham.cfg index 2ebb4d5cecf..6db9dd90b6a 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} - [2010/02/07 v3.4c achemso configuration: Anal. Chem.] + [2010/03/03 v3.4d 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 9e716f373ce..45519a8230a 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} - [2010/02/07 v3.4c achemso configuration: Bioconjugate Chem.] + [2010/03/03 v3.4d 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 27f57287374..899e84c49be 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} - [2010/02/07 v3.4c achemso configuration: Biochemistry] + [2010/03/03 v3.4d 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 e8d97468b14..89c641b9923 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} - [2010/02/07 v3.4c achemso configuration: Biotechnol. Prog.] + [2010/03/03 v3.4d 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 65e308b8752..9c02da4aace 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} - [2010/02/07 v3.4c achemso configuration: Biomacromolecules] + [2010/03/03 v3.4d achemso configuration: Biomacromolecules] \setkeys{acs}{usetitle = true} \def\acs@type@list{article,comment,communication,note,review,suppinfo} \SectionNumbersOff diff --git a/Master/texmf-dist/tex/latex/achemso/config/cgdefu.cfg b/Master/texmf-dist/tex/latex/achemso/config/cgdefu.cfg index 48103a85e59..674a1dac752 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} - [2010/02/07 v3.4c achemso configuration: Cryst. Growth Des.] + [2010/03/03 v3.4d 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 ccd4dd688ca..f4b67a5cbf3 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} - [2010/02/07 v3.4c achemso configuration: Chem. Rev.] + [2010/03/03 v3.4d 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 2faffa50511..d114720b679 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} - [2010/02/07 v3.4c achemso configuration: Chem. Mater.] + [2010/03/03 v3.4d 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 74dfc0c31a2..10a20d1d12b 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} - [2010/02/07 v3.4c achemso configuration: Chem. Res. Toxicol.] + [2010/03/03 v3.4d 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 29698337e6a..1cf4a90ec0d 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} - [2010/02/07 v3.4c achemso configuration: Energy Fuels] + [2010/03/03 v3.4d 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 2576b04b11b..0a1d89d11f1 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} - [2010/02/07 v3.4c achemso configuration: Environ. Sci. Technol.] + [2010/03/03 v3.4d 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 febc828da8d..9fe295d79ca 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} - [2010/02/07 v3.4c achemso configuration: Ind. Eng. Chem. Res.] + [2010/03/03 v3.4d 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 a7a5b56f4b5..f3018c9a0af 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} - [2010/02/07 v3.4c achemso configuration: Inorg. Chem.] + [2010/03/03 v3.4d 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 65d5328b970..16be44bd979 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jacsat.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jacsat.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jacsat.cfg} - [2010/02/07 v3.4c achemso configuration: J. Am. Chem. Soc.] + [2010/03/03 v3.4d achemso configuration: J. Am. Chem. Soc.] \SectionNumbersOff \ifx\acs@manuscript\acs@manuscript@communication\else \expandafter\endinput diff --git a/Master/texmf-dist/tex/latex/achemso/config/jafcau.cfg b/Master/texmf-dist/tex/latex/achemso/config/jafcau.cfg index df6ab551ed5..6a296ac7385 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} - [2010/02/07 v3.4c achemso configuration: J. Agric. Food Chem.] + [2010/03/03 v3.4d 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 b9d19825086..726c0cefb76 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} - [2010/02/07 v3.4c achemso configuration: J. Comb. Chem.] + [2010/03/03 v3.4d 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 8aa06f6df98..333fc64fb0f 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} - [2010/02/07 v3.4c achemso configuration: J. Chem. Eng. Data] + [2010/03/03 v3.4d 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 2e7986e6a4c..45116ac8e2b 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} - [2010/02/07 v3.4c achemso configuration: J. Chem. Inf. Model.] + [2010/03/03 v3.4d 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 5cd134367fe..b1441ab730b 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} - [2010/02/07 v3.4c achemso configuration: J. Chem. Theory Comput.] + [2010/03/03 v3.4d 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 989557d3348..c11bd16f411 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} - [2010/02/07 v3.4c achemso configuration: J. Med. Chem.] + [2010/03/03 v3.4d 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 7e28a934718..abe5bd0bf03 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} - [2010/02/07 v3.4c achemso configuration: J. Nat. Prod.] + [2010/03/03 v3.4d 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 ab24c058a2b..1daa2bbf4be 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} - [2010/02/07 v3.4c achemso configuration: J. Org. Chem.] + [2010/03/03 v3.4d 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 c2ab3494f7d..8a99953b01f 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} - [2010/02/07 v3.4c achemso configuration: J. Phys. Chem. A] + [2010/03/03 v3.4d achemso configuration: J. Phys. Chem. A] \def\acs@type@list{article,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 607b7573521..5d8e9618280 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} - [2010/02/07 v3.4c achemso configuration: J. Phys. Chem. B] + [2010/03/03 v3.4d achemso configuration: J. Phys. Chem. B] \def\acs@type@list{article,suppinfo} \SectionNumbersOff \captionsetup[table]{labelfont=bf,textfont=bf} diff --git a/Master/texmf-dist/tex/latex/achemso/config/jpccck.cfg b/Master/texmf-dist/tex/latex/achemso/config/jpccck.cfg index 2edec5f96a9..17616d9c836 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jpccck.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jpccck.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jpccck.cfg} - [2010/02/07 v3.4c achemso configuration: J. Phys. Chem. C] + [2010/03/03 v3.4d achemso configuration: J. Phys. Chem. C] \def\acs@type@list{article,suppinfo} \SectionNumbersOff \captionsetup[table]{labelfont=bf,textfont=bf} diff --git a/Master/texmf-dist/tex/latex/achemso/config/jpclcd.cfg b/Master/texmf-dist/tex/latex/achemso/config/jpclcd.cfg index d683df28dd4..434788b1723 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/jpclcd.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/jpclcd.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{jpclcd.cfg} - [2010/02/07 v3.4c achemso configuration: J. Phys. Chem. Lett.] + [2010/03/03 v3.4d achemso configuration: J. Phys. Chem. Lett.] \setkeys{acs}{usetitle = true} \def\acs@type@default{letter} \def\acs@type@list{letter} diff --git a/Master/texmf-dist/tex/latex/achemso/config/jprobs.cfg b/Master/texmf-dist/tex/latex/achemso/config/jprobs.cfg index 9e6e9ea4635..c50c1a257cc 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} - [2010/02/07 v3.4c achemso configuration: J. Proteome Res.] + [2010/03/03 v3.4d 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 1e140a24f9b..e57da47313a 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} - [2010/02/07 v3.4c achemso configuration: Langmuir] + [2010/03/03 v3.4d 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 cf76b5e12d3..c9e40c035cd 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} - [2010/02/07 v3.4c achemso configuration: Macromolecules] + [2010/03/03 v3.4d 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 cae1d567428..09653438e9b 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/mpohbp.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/mpohbp.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{mamobx.cfg} - [2010/02/07 v3.4c achemso configuration: Mol. Pharm.] + [2010/03/03 v3.4d 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 f26d952521e..2b1709d6594 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} - [2010/02/07 v3.4c achemso configuration: Nano Lett.] + [2010/03/03 v3.4d 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 77bc4200f15..2f43588805d 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} - [2010/02/07 v3.4c achemso configuration: Org. Proc. Res. Dev.] + [2010/03/03 v3.4d 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 b22bc6c1785..45cbdbf6af1 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} - [2010/02/07 v3.4c achemso configuration: Organometallics] + [2010/03/03 v3.4d 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 ac7efebb46e..e1e71b54208 100644 --- a/Master/texmf-dist/tex/latex/achemso/config/orlef7.cfg +++ b/Master/texmf-dist/tex/latex/achemso/config/orlef7.cfg @@ -15,7 +15,7 @@ %% \ProvidesFile{orlef7.cfg} - [2010/02/07 v3.4c achemso configuration: Org. Lett.] + [2010/03/03 v3.4d achemso configuration: Org. Lett.] \def\acs@type@default{letter} \def\acs@type@list{letter} \SectionNumbersOff |