<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Preparing Final Submissions for IEEE Journal Articles</title>
	<atom:link href="http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/</link>
	<description>life, business, consulting, and computer vision</description>
	<lastBuildDate>Tue, 07 Feb 2012 12:43:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Peter Yu</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-1856</link>
		<dc:creator>Peter Yu</dc:creator>
		<pubDate>Wed, 20 Jul 2011 15:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-1856</guid>
		<description>&lt;a href=&quot;#comment-1110&quot; rel=&quot;nofollow&quot;&gt;@Shawn Lankton &lt;/a&gt; If you use the subfig package, you can actually change the caption style to be numbers, roman numerals, letters or capital letters. I wrote a little tutorial on it: http://www.peteryu.ca/tutorials/publishing/latex_captions

Thanks for writing this tutorial, it&#039;s been very helpful to me. Do you know of an easy way to retain references and citations in the subfigure captions and tables in figs_only.tex? This is an issue if I refer to Eq. (8) or reference [10] in my subfigure captions, inside tables, etc. As figs_only.tex doesn&#039;t have the references from the original file, all the references break. Copying the references over runs the risk of losing their numerical order.</description>
		<content:encoded><![CDATA[<p><a href="#comment-1110" rel="nofollow">@Shawn Lankton </a> If you use the subfig package, you can actually change the caption style to be numbers, roman numerals, letters or capital letters. I wrote a little tutorial on it: <a href="http://www.peteryu.ca/tutorials/publishing/latex_captions" rel="nofollow">http://www.peteryu.ca/tutorials/publishing/latex_captions</a></p>
<p>Thanks for writing this tutorial, it&#8217;s been very helpful to me. Do you know of an easy way to retain references and citations in the subfigure captions and tables in figs_only.tex? This is an issue if I refer to Eq. (8) or reference [10] in my subfigure captions, inside tables, etc. As figs_only.tex doesn&#8217;t have the references from the original file, all the references break. Copying the references over runs the risk of losing their numerical order.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn Lankton</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-1589</link>
		<dc:creator>Shawn Lankton</dc:creator>
		<pubDate>Sun, 03 Apr 2011 22:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-1589</guid>
		<description>&lt;a href=&quot;#comment-1588&quot; rel=&quot;nofollow&quot;&gt;@Gianni &lt;/a&gt; thanks for the tip.  Glad you found the post useful.</description>
		<content:encoded><![CDATA[<p><a href="#comment-1588" rel="nofollow">@Gianni </a> thanks for the tip.  Glad you found the post useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gianni</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-1588</link>
		<dc:creator>Gianni</dc:creator>
		<pubDate>Sun, 03 Apr 2011 20:21:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-1588</guid>
		<description>Hi,

thanks for the useful instructions. Everything worked fine, but when I generated the final PDF there was a white rectangle covering part of the text near each figure. The EPS figures looked fine in GSView. The bounding box values seemed to be fine too. Mistery...

After wasting some more time I was able to solve the problem by adding a trim directive with 0 values.

Example:

\includegraphics[clip=true,trim=0 0 0 0]{fig/fig_23}</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>thanks for the useful instructions. Everything worked fine, but when I generated the final PDF there was a white rectangle covering part of the text near each figure. The EPS figures looked fine in GSView. The bounding box values seemed to be fine too. Mistery&#8230;</p>
<p>After wasting some more time I was able to solve the problem by adding a trim directive with 0 values.</p>
<p>Example:</p>
<p>\includegraphics[clip=true,trim=0 0 0 0]{fig/fig_23}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ozi</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-1559</link>
		<dc:creator>ozi</dc:creator>
		<pubDate>Thu, 24 Mar 2011 23:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-1559</guid>
		<description>Thanks for the nice tip, that saved me a lot of time. I modified your code to convert all the pages in the figs_only.pdf

#!/bin/sh
# usage:
# pdf2eps

for (( c=1; c&lt;=$1; c++ ))
do
pdfcrop $2.pdf
pdftops -f $c -l $c -eps &quot;$2-crop.pdf&quot;
rm &quot;$2-crop.pdf&quot;
mv &quot;$2-crop.eps&quot; &quot;fig_$c.eps&quot;

done

For example, if your figs_only.pdf file has 12 pages. Just writr

$ ./pdf2eps.sh 12 figs_only

and voila! you have all the eps files you neeed.</description>
		<content:encoded><![CDATA[<p>Thanks for the nice tip, that saved me a lot of time. I modified your code to convert all the pages in the figs_only.pdf</p>
<p>#!/bin/sh<br />
# usage:<br />
# pdf2eps</p>
<p>for (( c=1; c&lt;=$1; c++ ))<br />
do<br />
pdfcrop $2.pdf<br />
pdftops -f $c -l $c -eps &quot;$2-crop.pdf&quot;<br />
rm &quot;$2-crop.pdf&quot;<br />
mv &quot;$2-crop.eps&quot; &quot;fig_$c.eps&quot;</p>
<p>done</p>
<p>For example, if your figs_only.pdf file has 12 pages. Just writr</p>
<p>$ ./pdf2eps.sh 12 figs_only</p>
<p>and voila! you have all the eps files you neeed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ozi</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-1558</link>
		<dc:creator>ozi</dc:creator>
		<pubDate>Thu, 24 Mar 2011 23:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-1558</guid>
		<description>Thanks for the nice tip, that saved me a lot of time. I modified your code to convert all the pages in the figs_only.pdf

#!/bin/sh
# usage:
# pdf2eps  


for (( c=1; c&lt;=$1; c++ ))
do
	pdfcrop $2.pdf
	pdftops -f $c -l $c -eps &quot;$2-crop.pdf&quot; 
	rm  &quot;$2-crop.pdf&quot;
	mv  &quot;$2-crop.eps&quot; &quot;fig_$c.eps&quot;
	#mv figs_only.eps fig2.eps

done

For example, if your figs_only.pdf file has 12 pages. Just writr

$ ./pdf2eps.sh 12 figs_only

and voila! you have all the eps files you neeed.</description>
		<content:encoded><![CDATA[<p>Thanks for the nice tip, that saved me a lot of time. I modified your code to convert all the pages in the figs_only.pdf</p>
<p>#!/bin/sh<br />
# usage:<br />
# pdf2eps  </p>
<p>for (( c=1; c&lt;=$1; c++ ))<br />
do<br />
	pdfcrop $2.pdf<br />
	pdftops -f $c -l $c -eps &quot;$2-crop.pdf&quot;<br />
	rm  &quot;$2-crop.pdf&quot;<br />
	mv  &quot;$2-crop.eps&quot; &quot;fig_$c.eps&quot;<br />
	#mv figs_only.eps fig2.eps</p>
<p>done</p>
<p>For example, if your figs_only.pdf file has 12 pages. Just writr</p>
<p>$ ./pdf2eps.sh 12 figs_only</p>
<p>and voila! you have all the eps files you neeed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn Lankton</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-1110</link>
		<dc:creator>Shawn Lankton</dc:creator>
		<pubDate>Mon, 28 Sep 2009 14:39:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-1110</guid>
		<description>&lt;a href=&quot;#comment-1106&quot; rel=&quot;nofollow&quot;&gt;@jasmine &lt;/a&gt; 
Hey.  I don&#039;t know how to do this, specifically, but you can check the subfigure package help (which is very well done). (&lt;a href=&quot;http://www.fi.infn.it/pub/tex/doc/orig/subfigure.pdf&quot; rel=&quot;nofollow&quot;&gt;http://www.fi.infn.it/pub/tex/doc/orig/subfigure.pdf&lt;/a&gt;)</description>
		<content:encoded><![CDATA[<p><a href="#comment-1106" rel="nofollow">@jasmine </a><br />
Hey.  I don&#8217;t know how to do this, specifically, but you can check the subfigure package help (which is very well done). (<a href="http://www.fi.infn.it/pub/tex/doc/orig/subfigure.pdf" rel="nofollow">http://www.fi.infn.it/pub/tex/doc/orig/subfigure.pdf</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jasmine</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-1106</link>
		<dc:creator>jasmine</dc:creator>
		<pubDate>Mon, 21 Sep 2009 19:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-1106</guid>
		<description>Do you know of any way to change the labeling of the subfigures when using the subfigure package?  (i.e. instead of (a), (b), etc write A, B,... or some other label?)

Thanks!</description>
		<content:encoded><![CDATA[<p>Do you know of any way to change the labeling of the subfigures when using the subfigure package?  (i.e. instead of (a), (b), etc write A, B,&#8230; or some other label?)</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn Lankton</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-542</link>
		<dc:creator>Shawn Lankton</dc:creator>
		<pubDate>Wed, 24 Jun 2009 13:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-542</guid>
		<description>@william

If your figures are vectorized, then you shouldn&#039;t need to worry about resolution at all.  HOWEVER, if your figures are bitmaps, then resolution is VERY important, and you should shoot for 600dpi for a print article.

The steps I give in the post should give you eps files at the same resolution that they were in the pdf file.  If you&#039;re having trouble with &lt;code&gt;convert&lt;/code&gt;, try using another program such as Photoshop to convert the filetype.

Finally, if the problem is in the pdf2eps-pdfcrop part, you can try changing the line:
&lt;code&gt;$::opt_resolution = &quot;&quot;;&lt;/code&gt;
to
&lt;code&gt;$::opt_resolution = &quot;600&quot;;&lt;/code&gt;
in &lt;code&gt;pdfcrop.pl&lt;/code&gt;. This seemed to have no effect for me because my images came out high-res to begin with, but it might fix your problem!

Let us know if that works.</description>
		<content:encoded><![CDATA[<p>@william</p>
<p>If your figures are vectorized, then you shouldn&#8217;t need to worry about resolution at all.  HOWEVER, if your figures are bitmaps, then resolution is VERY important, and you should shoot for 600dpi for a print article.</p>
<p>The steps I give in the post should give you eps files at the same resolution that they were in the pdf file.  If you&#8217;re having trouble with <code>convert</code>, try using another program such as Photoshop to convert the filetype.</p>
<p>Finally, if the problem is in the pdf2eps-pdfcrop part, you can try changing the line:<br />
<code>$::opt_resolution = "";</code><br />
to<br />
<code>$::opt_resolution = "600";</code><br />
in <code>pdfcrop.pl</code>. This seemed to have no effect for me because my images came out high-res to begin with, but it might fix your problem!</p>
<p>Let us know if that works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: william</title>
		<link>http://www.shawnlankton.com/2008/08/preparing-final-submissions-for-ieee-journal-articles/comment-page-1/#comment-541</link>
		<dc:creator>william</dc:creator>
		<pubDate>Wed, 24 Jun 2009 10:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.shawnlankton.com/?p=366#comment-541</guid>
		<description>Very nice tips there. I actually tried them, and works pretty well. But is there a way to increase the resolution of the eps files?
The graphic eps files are now generated with 72 dpi, while the guideline said we need 600dpi for printing. Is it ok to use just 72 dpi?

Thanks for your suggestions and helps.</description>
		<content:encoded><![CDATA[<p>Very nice tips there. I actually tried them, and works pretty well. But is there a way to increase the resolution of the eps files?<br />
The graphic eps files are now generated with 72 dpi, while the guideline said we need 600dpi for printing. Is it ok to use just 72 dpi?</p>
<p>Thanks for your suggestions and helps.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

