<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Some TeX Developments &#187; chemistry</title>
	<atom:link href="http://www.texdev.net/tag/chemistry/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.texdev.net</link>
	<description>Coding in the TeX world</description>
	<lastBuildDate>Sun, 22 Jan 2012 10:34:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tracking chemical compounds with chemcompounds</title>
		<link>http://www.texdev.net/2010/07/25/tracking-chemical-compounds-with-chemcompounds/</link>
		<comments>http://www.texdev.net/2010/07/25/tracking-chemical-compounds-with-chemcompounds/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 07:58:06 +0000</pubDate>
		<dc:creator>Joseph Wright</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[chemcompounds]]></category>
		<category><![CDATA[chemistry]]></category>

		<guid isPermaLink="false">http://www.texdev.net/?p=775</guid>
		<description><![CDATA[As a chemist, one of the things I want to do is track compound numbers (which are normally given as bold numbers, 1, 2, etc.). The traditional way to do that is by hand, which works but does require some concentration. Recent versions of ChemDraw have included an add-in for Word to do things automatically, [...]]]></description>
			<content:encoded><![CDATA[<p>As a chemist, one of the things I want to do is track compound numbers (which are normally given as bold numbers, <strong>1</strong>, <strong>2</strong>, <em>etc</em>.). The traditional way to do that is by hand, which works but does require some concentration. Recent versions of <a title="CambridgeSoft" href="http://www.cambridgesoft.com/">ChemDraw</a> have included an add-in for Word to do things automatically, and of course there is LaTeX support for the same idea.</p>
<p>In LaTeX there is a choice between two packages for tracking what is what. First, there is the <a href="http://tug.ctan.org/pkg/bpchem">bpchem</a> package. It provides for the idea of subdivisions, so you can have <strong>1a</strong>, <strong>1b</strong>, <strong>1c</strong> and so forth. However, I find the interface in bpchem is a bit awkward. The alternative is the <a href="http://tug.ctan.org/pkg/chemcompounds">chemcompounds</a> package. It has a very easy to use approach to tracking, but does not have built-in support for subdivisions. So I&#8217;ve been working on how to achieve this easily in some stuff I&#8217;m writing at the moment. It turns out to be quite easy when you think about it.</p>
<p>The first stage is of course to load the package.</p>
<pre>\usepackage[noimplicit]{chemcompounds}</pre>
<p>I&#8217;ve decided to go with the option to turn off automatically creating new compound references, which means I have to declare each one separately. This requires a block of declarations in the preamble, but I actually find this easier than doing things <em>ad hoc</em>. The subdivisions I want are all about R groups (chemists will understand!). So I&#8217;ve started by setting up some simple R group letters (I have a family of compounds, and so it makes sense to use the same letter for the same R group in each case):</p>
<pre>\declarecompound[a]{Mes}
\declarecompound[b]{iPr}</pre>
<p>Hopefully you can see how this works: the optional argument sets up the label that will print, and the mandatory one is the label I&#8217;ll use to refer to the compound.<br />
Then I need to set up the general compounds (the ones that will be <strong>1</strong>, <strong>2</strong> and so on). I can let chemcompounds do the numbering, so this is easy:</p>
<pre>\declarecompound{imidazole}
\declarecompound{pincer:salt}
\declarecompound{pincer:carbene}</pre>
<p>The last stage in the preamble is to create the subdivided compounds. Rather than have to track the numbers and letter myself, I&#8217;ve found that I can simply refer back to the existing labels:</p>
<pre>\declarecompound[\compound{imidazole}\compound{Mes}]
  {imidazole:Mes}
\declarecompound[\compound{imidazole}\compound{iPr}]
  {imidazole:iPr}
\declarecompound[\compound{pincer:salt}\compound{Mes}]
  {pincer:salt:Mes}
\declarecompound[\compound{pincer:salt}\compound{iPr}]
  {pincer:salt:iPr}
\declarecompound[\compound{pincer:carbene}\compound{Mes}]
  {pincer:carbene:Mes}
\declarecompound[\compound{pincer:carbene}\compound{iPr}]
  {pincer:carbene:iPr}</pre>
<p>In the document body, things are now very easy. I just use the <code>\compound</code> macro. So for the general case I&#8217;ll have</p>
<pre>\compound{imidazole}</pre>
<p>(printing say <strong>4</strong>) whereas for a single case I might have</p>
<pre>\compound{imidazole:Mes}</pre>
<p>(printing say <strong>4a</strong>). This keeps my source easy to follow (I don&#8217;t have to remember numbers and letters, only labels), and avoids mistakes on my part.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.texdev.net/2010/07/25/tracking-chemical-compounds-with-chemcompounds/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Royal Society of Chemistry TeX Template</title>
		<link>http://www.texdev.net/2010/02/24/royal-society-of-chemistry-tex-template/</link>
		<comments>http://www.texdev.net/2010/02/24/royal-society-of-chemistry-tex-template/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 17:15:10 +0000</pubDate>
		<dc:creator>Joseph Wright</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[chemistry]]></category>
		<category><![CDATA[rsc]]></category>

		<guid isPermaLink="false">http://www.texdev.net/?p=640</guid>
		<description><![CDATA[A while ago I talked about the variation between different chemistry publishers in their LaTeX support. Looking for something on the Royal Society of Chemistry site today I find that the people at Physical Chemistry Chemical Physics have created an updated template for TeX users. I&#8217;d say that is good news: remember of course that [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago I talked about the <a href="http://www.texdev.net/2010/01/05/chemistry-journals-publishers-support-of-latex/">variation between different chemistry publishers in their LaTeX support</a>. Looking for something on the <a href="http://www.rsc.org/">Royal Society of Chemistry</a> site today I find that the people at <a href="http://www.rsc.org/Publishing/Journals/CP/"><em>Physical Chemistry Chemical Physics</em></a> have created an <a href="http://www.rsc.org/Publishing/ReSourCe/AuthorGuidelines/ElectronicFiles/Templates/tex.asp">updated template for TeX users</a>. I&#8217;d say that is good news: remember of course that the journals are not typeset from the TeX source.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.texdev.net/2010/02/24/royal-society-of-chemistry-tex-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chemistry journals: publishers support of LaTeX</title>
		<link>http://www.texdev.net/2010/01/05/chemistry-journals-publishers-support-of-latex/</link>
		<comments>http://www.texdev.net/2010/01/05/chemistry-journals-publishers-support-of-latex/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 20:08:43 +0000</pubDate>
		<dc:creator>Joseph Wright</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[chemistry]]></category>

		<guid isPermaLink="false">http://www.texdev.net/?p=601</guid>
		<description><![CDATA[As the author of the achemso bundle (for supporting submissions to the American Chemical Society), I get a few queries about the support various publishers provide for LaTeX. Unlike more physics-focussed journals, the chemistry journals never typeset directly from authors LaTeX sources. As a result, the acceptance of LaTeX material from authors is rather less [...]]]></description>
			<content:encoded><![CDATA[<p>As the author of the <a title=" 	Support for American Chemical Society journal submissions" href="http://tug.ctan.org/pkg/achemso">achemso</a> bundle (for supporting submissions to the <a title="American Chemical Society" href="http://www.acs.org/">American Chemical Society</a>), I get a few queries about the support various publishers provide for LaTeX. Unlike more physics-focussed journals, the chemistry journals never typeset directly from authors LaTeX sources.  As a result, the acceptance of LaTeX material from authors is rather less popular, and tends to be patchy. So I thought I&#8217;d summarise things as I currently understand them.</p>
<h2>American Chemical Society (ACS)</h2>
<p>As I said above, I&#8217;ve written the <a title="Support for American Chemical Society journal submissions" href="http://tug.ctan.org/pkg/achemso">achemso</a> bundle specifically for submissions to the ACS. However, while the central office are happy to host a copy on their website and so on, the ACS don&#8217;t officially support the bundle. That means, in practice, that some journals are happier with LaTeX submissions than others. Each journal has its own office, and so I hear different things from people submitting to different journals. It also means that I have to pick up the requirements of each office based on feedback <em>via</em> authors, rather than getting any formalised instructions. There are mistakes in the achemso bundle, and there are also requirements that I don&#8217;t know about. So feedback is always useful (good or bad).</p>
<h2>Royal Society of Chemistry (RSC)</h2>
<p>The RSC have rather less information about LaTeX on their website than the ACS. They do mention TeX, but only very briefly. I&#8217;ve written some BibTeX styles, and a very basic article template, which are available in the <a title="BibTeX style for use with RSC journals" href="http://tug.ctan.org/pkg/rsc">rsc</a> bundle. I&#8217;ve had a bit of feedback on these, and I hope that they at least provide a starting point for writing a submission to the RSC in LaTeX. More generally, I think the best advice is to check with the editorial office for the relevant journal before writing anything, and to stick to the basic LaTeX article class when you do.</p>
<h2>Wiley</h2>
<p>As with the RSC, Wiley don&#8217;t have a lot of LaTeX information. What they <em>do</em> say is that they only accept PDF submissions: you can&#8217;t send your source. They also say to stick to the plain article class, and basically to keep things simple.</p>
<h2>Elsevier</h2>
<p>Elsevier have recently had a new class written for journal submissions, <a title="http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=elsarticle" href="http://tug.ctan.org/pkg/elsarticle">elsarticle</a>. From what I can make out on their site, you can use this for most of their journals, which should include the chemistry ones. As this has actually been written for them to order, I imagine that Elsevier is the best place to be sending LaTeX submissions to. Hopefully other publishers will see that they have made life easier for their authors and will take note.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.texdev.net/2010/01/05/chemistry-journals-publishers-support-of-latex/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>LaTeX and Dalton Transactions</title>
		<link>http://www.texdev.net/2009/08/22/latex-and-dalton-transactions/</link>
		<comments>http://www.texdev.net/2009/08/22/latex-and-dalton-transactions/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 22:01:05 +0000</pubDate>
		<dc:creator>Joseph Wright</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[chemistry]]></category>

		<guid isPermaLink="false">http://www.texdev.net/?p=391</guid>
		<description><![CDATA[For once I have a post which combines TeX directly with my job. I&#8217;ve just received a copy of the proofs for an article in the chemistry journal Dalton Transactions (the article has DOI 10.1039/b907982c). At the top of each page I spotted /usr/local/teTeX/share/texmf/tex/latex/techbooks/als/rsc/base2006/rsc2006v1.cls (2004/07/27 v1.0 Standard LaTeX document class for RSC Journals) The great [...]]]></description>
			<content:encoded><![CDATA[<p>For once I have a post which combines TeX directly with my job. I&#8217;ve just received a copy of the proofs for an article in the chemistry journal <a title="Dalton Transactions" href="http://www.rsc.org/Publishing/Journals/DT/index.asp"><em>Dalton Transactions</em></a> (the article has DOI <a href="http://dx.doi.org/10.1039/b907982c">10.1039/b907982c</a>). At the top of each page I spotted</p>
<blockquote><p>/usr/local/teTeX/share/texmf/tex/latex/techbooks/als/rsc/base2006/rsc2006v1.cls<br />
(2004/07/27 v1.0 Standard LaTeX document class for RSC Journals)</p></blockquote>
<p>The great irony is that although the journal (along with many others in chemistry) is typeset in LaTeX, they don&#8217;t accept LaTeX submissions! I&#8217;d love to get hold of that class file and have a look: pretty much no chance, unfortunately.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.texdev.net/2009/08/22/latex-and-dalton-transactions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Submission template for the RSC</title>
		<link>http://www.texdev.net/2009/04/24/submission-template-for-the-rsc/</link>
		<comments>http://www.texdev.net/2009/04/24/submission-template-for-the-rsc/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 12:21:52 +0000</pubDate>
		<dc:creator>Joseph Wright</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[chemistry]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://www.texdev.net/?p=281</guid>
		<description><![CDATA[I&#8217;ve just uploaded a new version of my rsc package to CTAN. There are a few improvements to the BibTeX styles the package provides (mciteplus is still supported, but is no longer mandatory), but the main change is that I&#8217;ve added a short template to the bundle. I get the occasional e-mail seeking advice about [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just uploaded a new version of my <a title="BibTeX style for use with RSC journals" href="http://www.ctan.org/pkg/rsc">rsc</a> package to <a title="The Comprehensive TeX Archive Network" href="http://www.ctan.org">CTAN</a>. There are a few improvements to the BibTeX styles the package provides (<a title="Enhanced multiple citations" href="http://www.ctan.org/pkg/mciteplus">mciteplus</a> is still supported, but is no longer mandatory), but the main change is that I&#8217;ve added a short template to the bundle. I get the occasional e-mail seeking advice about writing papers to submit to the RSC, so it seemed like a good idea to provide something a bit more formalised than the odd hint to individuals.</p>
<p>Of course, I don&#8217;t <em>know</em> what the RSC want, but I&#8217;ve got a pretty good idea about what most chemistry paper drafts look like. I&#8217;ve also got the work I&#8217;ve done on <a title="Support for American Chemical Society journal submissions" href="http://www.ctan.org/pkg/achemso">achemso</a> to go from. The basic points are to keep it simple and not to expect “publication ready” formatting. I think this confuses a lot of people who come from a more physics-based background. A lot of physics journals typeset stuff directly from authors&#8217; drafts, and so print-ready templates are common. On the other hand, in chemistry papers tend to be submitted in Word format and are extensively altered by the publishers. So there is no real need for print-ready material when submitting to chemistry journals.</p>
<p>Hopefully, the clues I&#8217;ve provided in the rsc bundle will make life a little easier for prospective authors.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.texdev.net/2009/04/24/submission-template-for-the-rsc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

