<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164295</link>
    <title>MATLAB Central Newsreader - Anyone using PRINT -D to specify a specific printer?</title>
    <description>Feed for thread: Anyone using PRINT -D to specify a specific printer?</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 21 Feb 2008 20:14:02 -0500</pubDate>
      <title>Anyone using PRINT -D to specify a specific printer?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164295#416660</link>
      <author>Ali Siddiq</author>
      <description>I am writing on behalf of The MathWorks. We are inerested &lt;br&gt;
in better understanding usage of the -d output options of &lt;br&gt;
the PRINT command. &quot;print -d&quot; can be used to specify a &lt;br&gt;
graphics format (such as TIFF) or a particular driver, &lt;br&gt;
either a printer (&quot;HP Laser Jet III&quot;) or postscript.&lt;br&gt;
&lt;br&gt;
In particular, is anybody using -d to specify a printer-&lt;br&gt;
specific format (ex. print -dljet3)? If so, what -d options &lt;br&gt;
do you use and why?&lt;br&gt;
&lt;br&gt;
Thank you,&lt;br&gt;
- Ali</description>
    </item>
    <item>
      <pubDate>Fri, 22 Feb 2008 09:21:17 -0500</pubDate>
      <title>Re: Anyone using PRINT -D to specify a specific printer?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164295#416734</link>
      <author>tristram.scott@ntlworld.com (Tristram Scott)</author>
      <description>Ali Siddiq &amp;lt;ali.siddiq.nospam@mathworks.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; I am writing on behalf of The MathWorks. We are inerested &lt;br&gt;
&amp;gt; in better understanding usage of the -d output options of &lt;br&gt;
&amp;gt; the PRINT command. &quot;print -d&quot; can be used to specify a &lt;br&gt;
&amp;gt; graphics format (such as TIFF) or a particular driver, &lt;br&gt;
&amp;gt; either a printer (&quot;HP Laser Jet III&quot;) or postscript.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; In particular, is anybody using -d to specify a printer-&lt;br&gt;
&amp;gt; specific format (ex. print -dljet3)? If so, what -d options &lt;br&gt;
&amp;gt; do you use and why?&lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
I don't use any of the GhostScript devices, but do use all of the following:&lt;br&gt;
&lt;br&gt;
AxesPrint.m:            print('-dps2c',[pn fn])&lt;br&gt;
AxesPrint.m:            print('-deps2c',[pn fn])&lt;br&gt;
AxesPrint.m:            print('-djpeg80',[pn fn])&lt;br&gt;
AxesPrint.m:            print('-dtiff',[pn fn])&lt;br&gt;
AxesPrint.m:            print('-dpng',[pn fn])&lt;br&gt;
AxesPrint.m:            print('-dmeta',[pn fn])&lt;br&gt;
AxesPrint.m:            print('-dmeta') % Straight to clipboard&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Dr Tristram J. Scott               &lt;br&gt;
Energy Consultant                  </description>
    </item>
    <item>
      <pubDate>Tue, 26 Feb 2008 14:54:13 -0500</pubDate>
      <title>Re: Anyone using PRINT -D to specify a specific printer?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164295#417416</link>
      <author>Richard Quist</author>
      <description>Tristram Scott wrote:&lt;br&gt;
&amp;gt; Ali Siddiq &amp;lt;ali.siddiq.nospam@mathworks.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&amp;gt; I am writing on behalf of The MathWorks. We are inerested &lt;br&gt;
&amp;gt;&amp;gt; in better understanding usage of the -d output options of &lt;br&gt;
&amp;gt;&amp;gt; the PRINT command. &quot;print -d&quot; can be used to specify a &lt;br&gt;
&amp;gt;&amp;gt; graphics format (such as TIFF) or a particular driver, &lt;br&gt;
&amp;gt;&amp;gt; either a printer (&quot;HP Laser Jet III&quot;) or postscript.&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; In particular, is anybody using -d to specify a printer-&lt;br&gt;
&amp;gt;&amp;gt; specific format (ex. print -dljet3)? If so, what -d options &lt;br&gt;
&amp;gt;&amp;gt; do you use and why?&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I don't use any of the GhostScript devices, but do use all of the following:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; AxesPrint.m:            print('-dps2c',[pn fn])&lt;br&gt;
&amp;gt; AxesPrint.m:            print('-deps2c',[pn fn])&lt;br&gt;
&amp;gt; AxesPrint.m:            print('-djpeg80',[pn fn])&lt;br&gt;
&amp;gt; AxesPrint.m:            print('-dtiff',[pn fn])&lt;br&gt;
&amp;gt; AxesPrint.m:            print('-dpng',[pn fn])&lt;br&gt;
&amp;gt; AxesPrint.m:            print('-dmeta',[pn fn])&lt;br&gt;
&amp;gt; AxesPrint.m:            print('-dmeta') % Straight to clipboard&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
Thanks, Dr. Scott.&lt;br&gt;
&lt;br&gt;
Anyone else care to chime in?&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
&lt;br&gt;
Richard Quist&lt;br&gt;
Software Developer&lt;br&gt;
The MathWorks, Inc.</description>
    </item>
  </channel>
</rss>

