<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: What font to choose - SAS Studio --&amp;gt; Word on PC in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886473#M24015</link>
    <description>&lt;P&gt;ODS WORD supports both PNG and SVG output. The ODS style used also favors fonts typically used in Word.&lt;/P&gt;</description>
    <pubDate>Wed, 26 Jul 2023 16:14:06 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2023-07-26T16:14:06Z</dc:date>
    <item>
      <title>What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886296#M24009</link>
      <description>&lt;P&gt;Hi! I have used PROC SGPLOT to produce some nice graphs.&lt;/P&gt;
&lt;P&gt;In the title statement I used&amp;nbsp; "Albany AMT"&amp;nbsp; - a tips from SAS written in the Log.&amp;nbsp;Looks REALLY nice!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then I download this as a flat file&amp;nbsp; &amp;nbsp;"mygraph.svg" and include it in standard MsWord&amp;nbsp; (Office 365).&lt;/P&gt;
&lt;P&gt;BUT now&amp;nbsp; it does not look equally nice.&lt;/P&gt;
&lt;P&gt;It turns out that Word does NOT support Albany AMT. Instead it uses Arial (Arial MSFontService).&lt;BR /&gt;The file mygraph.svg is a textfile, which can be viewed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MY QUESTION: What Font shall I use in PROC SGPLOT in SAS Studio, so a file mygraph.svg is produced,&lt;/P&gt;
&lt;P&gt;which then looks nice and good in MsWord on the PC?&lt;/P&gt;
&lt;P&gt;The importance is the look in MsWord (not that it lokks nice in SAS Studio).&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;(A little like a problem of "merging two files with allowed fonts". Only those obs that are in both files are accepted.)&lt;/P&gt;
&lt;P&gt;MANY THANKS in for any response!&lt;/P&gt;
&lt;P&gt;/Br Anders&lt;/P&gt;
&lt;P&gt;p.s.&amp;nbsp; %SGANNO macros are great!&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2023 20:09:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886296#M24009</guid>
      <dc:creator>AndersS</dc:creator>
      <dc:date>2023-07-25T20:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886358#M24010</link>
      <description>What happens if you use "options nofontembedding;" when creating the svg. Does that solve the font issue?</description>
      <pubDate>Wed, 26 Jul 2023 08:58:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886358#M24010</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2023-07-26T08:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886395#M24011</link>
      <description>Could you use PNG file ?&lt;BR /&gt;If you worried about display of picture, You could try dpi= and image_dpi= options:&lt;BR /&gt;&lt;BR /&gt;ods listing gpath='c:\temp\' image_dpi=300;&lt;BR /&gt;ods graphics /imagename='want' outputfmt=png;&lt;BR /&gt;ods rtf file='c:\temp\want.rtf' dpi=300 ;&lt;BR /&gt;proc sgplot ;&lt;BR /&gt;...............&lt;BR /&gt;run;&lt;BR /&gt;ods rtf close;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Jul 2023 11:56:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886395#M24011</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-07-26T11:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886454#M24012</link>
      <description>&lt;P&gt;Hi! I tested BOTH RTF&amp;nbsp; and PNG.&amp;nbsp; The code below produces both.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;In Word I think that RTF is better.&lt;BR /&gt;data work.test;&lt;BR /&gt;xval=1; yval=2; output;&lt;BR /&gt;xval=3; yval=6; output;&amp;nbsp;&amp;nbsp;run;&lt;BR /&gt;&lt;BR /&gt;Title1 "RTF_PNG "&amp;nbsp;&amp;nbsp;height=2 font="Albany AMT";&lt;BR /&gt;ods rtf file='/home/anders.skollermo/RTF_PNG.rtf' dpi=300 ;&lt;/P&gt;
&lt;P&gt;ODS LISTING GPATH= "/home/anders.skollermo" image_dpi=300;&lt;/P&gt;
&lt;P&gt;ODS GRAPHICS / ANTIALIASMAX= 20000 LINEPATTERNOBSMAX= 20000 height= 480px &lt;BR /&gt;width= 640px outputfmt= PNG imagename= "RTF_PNG";&lt;/P&gt;
&lt;P&gt;proc sgplot data= work.test NOautolegend;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;series x= Xval y= Yval;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ODS RTF CLOSE;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 15:05:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886454#M24012</guid>
      <dc:creator>AndersS</dc:creator>
      <dc:date>2023-07-26T15:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886455#M24013</link>
      <description>&lt;P&gt;MANY THANKS!&amp;nbsp; &amp;nbsp; &amp;nbsp;Fast and VERY GOOD answer. /Br Anders&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 15:06:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886455#M24013</guid>
      <dc:creator>AndersS</dc:creator>
      <dc:date>2023-07-26T15:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886470#M24014</link>
      <description>&lt;P&gt;Just so you know, there is an ODS WORD destination as well. It might be worth a try as well.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 16:11:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886470#M24014</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-07-26T16:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886473#M24015</link>
      <description>&lt;P&gt;ODS WORD supports both PNG and SVG output. The ODS style used also favors fonts typically used in Word.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 16:14:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886473#M24015</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-07-26T16:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886483#M24017</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;ODS WORD is preproduction now in SAS Studio. I just tested it.&lt;/P&gt;
&lt;P&gt;But, I will remember this.&lt;/P&gt;
&lt;P&gt;NO I did not know about ODS WORD.&amp;nbsp; "Mea culpa".&lt;/P&gt;
&lt;P&gt;/Br Anders&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 16:52:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886483#M24017</guid>
      <dc:creator>AndersS</dc:creator>
      <dc:date>2023-07-26T16:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886485#M24018</link>
      <description>&lt;P&gt;What version of SAS are you running?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 16:56:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886485#M24018</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-07-26T16:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886487#M24019</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"options nofontembedding;"&amp;nbsp; &amp;nbsp; does NOT solve the problem with the font.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The svg-file comnatins the name of the font - and that font is not available on MsWord.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;BUT - "Nice try"&amp;nbsp; &amp;nbsp;- a VERY GODD Idea. Many thanks.&amp;nbsp; &amp;nbsp;/Br Anders&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 16:59:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886487#M24019</guid>
      <dc:creator>AndersS</dc:creator>
      <dc:date>2023-07-26T16:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886488#M24020</link>
      <description>SAS on demand for academics - I do not know.&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Jul 2023 17:01:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886488#M24020</guid>
      <dc:creator>AndersS</dc:creator>
      <dc:date>2023-07-26T17:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886506#M24021</link>
      <description>&lt;P&gt;Please run this command from the editor and post the value from the log:&lt;/P&gt;
&lt;P&gt;%put &amp;amp;sysvlong;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 18:02:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/886506#M24021</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-07-26T18:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: What font to choose - SAS Studio --&gt; Word on PC</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/887685#M24032</link>
      <description>&lt;P&gt;Hi! The log in SAS Studio:&lt;/P&gt;
&lt;DIV class="sasSource"&gt;69 %put &amp;amp;sysvlong;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;9.04.01M7P080620&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Sorry for the late answer!&amp;nbsp; I have been away for some days.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;I have used ODS RTF;&amp;nbsp; &amp;nbsp;and&amp;nbsp;outputfmt= PNG&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;I get a file&amp;nbsp; named.rtf that I download to my PC.&amp;nbsp; Opened i Word. Cut and paste into document.&lt;BR /&gt;Works fine.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;If you have any idea about how to get nice graphics from SAS Studio into PC Word,&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;please tell me. I will try it and report here.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;MANY THANKS! / Br Anders&lt;/DIV&gt;</description>
      <pubDate>Thu, 03 Aug 2023 13:13:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/What-font-to-choose-SAS-Studio-gt-Word-on-PC/m-p/887685#M24032</guid>
      <dc:creator>AndersS</dc:creator>
      <dc:date>2023-08-03T13:13:03Z</dc:date>
    </item>
  </channel>
</rss>

