<?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>scienceoss.com &#187; pdf</title>
	<atom:link href="http://scienceoss.com/tags/pdf/feed/" rel="self" type="application/rss+xml" />
	<link>http://scienceoss.com</link>
	<description>useful tidbits for using open source software in science</description>
	<lastBuildDate>Wed, 26 May 2010 03:34:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Converting between SVG, EPS, and PDF</title>
		<link>http://scienceoss.com/converting-between-svg-eps-and-pdf/</link>
		<comments>http://scienceoss.com/converting-between-svg-eps-and-pdf/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 21:13:20 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[utilities]]></category>
		<category><![CDATA[converting]]></category>
		<category><![CDATA[eps]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[svg]]></category>

		<guid isPermaLink="false">http://scienceoss.com/converting-between-svg-eps-and-pdf/</guid>
		<description><![CDATA[Sometimes you want to be able to tweak a plot in R that was saved as a PDF or an EPS. Use this to convert an eps into svg for editing in Inkscape: pstoedit -f plot-svg input.eps output.svg Then save the SVG in Inkscape as a &#8220;Plain SVG&#8221;, and use convert input.svg output.pdf]]></description>
			<content:encoded><![CDATA[<p>Sometimes you want to be able to tweak a plot in R that was saved as a PDF or an EPS.</p>
<p>Use this to convert an eps into svg for editing in Inkscape:</p>
<pre class="prettyprint"><code class="code">pstoedit -f plot-svg input.eps output.svg</code></pre>
<p>Then save the SVG in Inkscape as a &#8220;Plain SVG&#8221;, and use</p>
<pre class="prettyprint"><code class="code">convert input.svg output.pdf
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://scienceoss.com/converting-between-svg-eps-and-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Split the pages out of a PDF, or merge PDFs into one</title>
		<link>http://scienceoss.com/split-the-pages-out-of-a-pdf-or-merge-pdfs-into-one/</link>
		<comments>http://scienceoss.com/split-the-pages-out-of-a-pdf-or-merge-pdfs-into-one/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 21:49:12 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[utilities]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://scienceoss.com/?p=79</guid>
		<description><![CDATA[Using the free open source program PDF Toolkit, you can operate on PDFs quite easily. Install the open-source PDF Toolkit Get the PDF Toolkit package, available for Windows, Mac OSX 10.3+ (or build from source for earlier Mac OSs) and Linux. It&#8217;s in the Ubuntu repositories: sudo apt-get install pdftk Split pages from a PDF [...]]]></description>
			<content:encoded><![CDATA[<p>Using the free open source program PDF Toolkit, you can operate on PDFs quite easily.<span id="more-79"></span></p>
<h3>Install the open-source PDF Toolkit</h3>
<p>Get the <a href="http://www.accesspdf.com/article.php/20041130153545577">PDF Toolkit</a> package, available for Windows, Mac OSX 10.3+ (or build from source for earlier Mac OSs) and Linux.</p>
<p>It&#8217;s in the Ubuntu repositories:</p>
<pre class = "prettyprint"><code class = "code">sudo apt-get install pdftk </code></pre>
<h3>Split pages from a PDF</h3>
<p>To split out pages 10-15 and page 19 of <span class="c">whole.pdf</span> into a separate PDF, <span class="c">piece.pdf</span>, run</p>
<pre class = "prettyprint"><code class = "code">
pdftk whole.pdf cat 10-15 19 output piece.pdf
</code></pre>
<h3>Merge multiple PDFs into one</h3>
<p>To combine <span class="c">first.pdf</span>, <span class="c">second.pdf</span>, and <span class="c">third.pdf</span> into <span class="c">big.pdf</span>, use</p>
<pre class = "prettyprint"><code class = "code">pdftk first.pdf second.pdf third.pdf cat output big.pdf</code></pre>
<p>Other examples <a href="http://www.accesspdf.com/article.php/20041129175231241">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scienceoss.com/split-the-pages-out-of-a-pdf-or-merge-pdfs-into-one/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

