<?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: Printing instruction manuals, how to reorder postscript files</title>
	<atom:link href="http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/</link>
	<description>Just another GNOME Blogs weblog</description>
	<lastBuildDate>Tue, 15 Jun 2010 18:43:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: max</title>
		<link>http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/comment-page-1/#comment-176</link>
		<dc:creator>max</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/#comment-176</guid>
		<description>Isn&#039;t that what psbook is supposed to do?</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t that what psbook is supposed to do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/comment-page-1/#comment-177</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/#comment-177</guid>
		<description>when you use this method, dont you have a &gt; type edge where the pages flip? &lt;br/&gt;what i do, althou, it does result in a &#039;thicker&#039; book, is just print 2 pages per sheet, and fold each in half, and stack. then staple the stack, (sometimes, have to use longer non standard office stapler). but it works nicely for me. &lt;br/&gt;althou, i guess with your method i could just snip the &gt; edge. hoping that near the middle no text gets chopped. :-D</description>
		<content:encoded><![CDATA[<p>when you use this method, dont you have a &gt; type edge where the pages flip? <br />what i do, althou, it does result in a &#8216;thicker&#8217; book, is just print 2 pages per sheet, and fold each in half, and stack. then staple the stack, (sometimes, have to use longer non standard office stapler). but it works nicely for me. <br />althou, i guess with your method i could just snip the &gt; edge. hoping that near the middle no text gets chopped. <img src='http://blogs.gnome.org/cneumair/wp-content/mu-plugins/tango-smilies/tango/face-smile-big.png' alt=':-D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/comment-page-1/#comment-178</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/#comment-178</guid>
		<description>Nice, but psbook psnup seems to do exactly what you want, and also handles signatures, in case you want to do this with a manual that is too large to fold in one piece.  Psbook and psnup are in the psutils package.</description>
		<content:encoded><![CDATA[<p>Nice, but psbook psnup seems to do exactly what you want, and also handles signatures, in case you want to do this with a manual that is too large to fold in one piece.  Psbook and psnup are in the psutils package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marius Gedminas</title>
		<link>http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/comment-page-1/#comment-179</link>
		<dc:creator>Marius Gedminas</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/#comment-179</guid>
		<description>You are jumping through some unnecessary hoops.  Python lets you express what you want more directly.  I hope this comment form won&#039;t mangle it too badly:&lt;p/&gt;import sys&lt;br/&gt;n = int(sys.argv[1])&lt;br/&gt;if n % 2:&lt;br/&gt;  sys.exit(&quot;expected an even number, but %s is not even! Aborting&quot; % n)&lt;br/&gt;for i in range(1, n/2+1):&lt;br/&gt;  if i % 2:&lt;br/&gt;    print n+1-i, i,&lt;br/&gt;  else:&lt;br/&gt;    print i, n+1-i,&lt;br/&gt;print</description>
		<content:encoded><![CDATA[<p>You are jumping through some unnecessary hoops.  Python lets you express what you want more directly.  I hope this comment form won&#8217;t mangle it too badly:
<p />import sys<br />n = int(sys.argv[1])<br />if n % 2:<br />  sys.exit(&#8220;expected an even number, but %s is not even! Aborting&#8221; % n)<br />for i in range(1, n/2+1):<br />  if i % 2:<br />    print n+1-i, i,<br />  else:<br />    print i, n+1-i,<br />print</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Данило</title>
		<link>http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/comment-page-1/#comment-180</link>
		<dc:creator>Данило</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/#comment-180</guid>
		<description>You&#039;ve even got an example for what you are after in &quot;man pstops&quot; (also in psutils package, like psbook and psnup, but a bit more raw, and can do even some more complicated things):&lt;p/&gt;&quot;&quot;&quot;&quot;&lt;br/&gt;       To re-arrange pages for printing 2-up booklets, use&lt;p/&gt;                                         &quot;4:-3L@.7(21cm,0)+0L@.7(21cm,14.85cm)&quot;&lt;p/&gt;       for the front sides, and&lt;p/&gt;                                         &quot;4:1L@.7(21cm,0)+-2L@.7(21cm,14.85cm)&quot;&lt;p/&gt;       for the reverse sides (or join them with a comma for duplex printing).&lt;br/&gt;&quot;&quot;&quot;</description>
		<content:encoded><![CDATA[<p>You&#8217;ve even got an example for what you are after in &#8220;man pstops&#8221; (also in psutils package, like psbook and psnup, but a bit more raw, and can do even some more complicated things):
<p />&#8220;&#8221;"&#8221;<br />       To re-arrange pages for printing 2-up booklets, use
<p />                                         &#8220;4:-3L@.7(21cm,0)+0L@.7(21cm,14.85cm)&#8221;
<p />       for the front sides, and
<p />                                         &#8220;4:1L@.7(21cm,0)+-2L@.7(21cm,14.85cm)&#8221;
<p />       for the reverse sides (or join them with a comma for duplex printing).<br />&#8220;&#8221;"</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rusty</title>
		<link>http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/comment-page-1/#comment-181</link>
		<dc:creator>Rusty</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/#comment-181</guid>
		<description>Likewise OpenOffice.org does have a print option for this, Brochure. &lt;p/&gt;I&#039;m not saying that OOo reads pdf files, but it includes the ability to print the way you describe for the document types it will read.</description>
		<content:encoded><![CDATA[<p>Likewise OpenOffice.org does have a print option for this, Brochure.
<p />I&#8217;m not saying that OOo reads pdf files, but it includes the ability to print the way you describe for the document types it will read.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  blogs.gnome.org/cneumair/2007/03/15/printing-instruction-manuals-how-to-reorder-postscript-files/feed/ ) in 1.31632 seconds, on Feb 12th, 2012 at 7:12 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 12th, 2012 at 8:12 am UTC -->
