<?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 How to Italicize Just One Word in FOOTNOTE? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843883#M23295</link>
    <description>&lt;P&gt;In the following &lt;CODE&gt;sgplot&lt;/CODE&gt;, can I just italicize &lt;CODE&gt;Yahoo Finance&lt;/CODE&gt; in &lt;CODE&gt;footnote&lt;/CODE&gt; so that it can be Source: &lt;EM&gt;Yahoo Finance&lt;/EM&gt; for example?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SNP500.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77227iFCE6F5CCC5140246/image-size/large?v=v2&amp;amp;px=999" role="button" title="SNP500.png" alt="SNP500.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is the working snippet.&lt;/P&gt;&lt;PRE&gt;filename SNP500 url 'https://query1.finance.yahoo.com/v7/finance/download/%5EGSPC?period1=-1388534400&amp;amp;period2=1767225599';

proc import file=SNP500 dbms=csv replace out=SNP500;
run;

ods results=off;
ods listing gpath='!USERPROFILE\Desktop\';
ods graphics/reset imagename='SNP500';
title 'S&amp;amp;P 500 Index';
footnote 'Source: Yahoo Finance';

proc sgplot;
	series x=date y=close;
	yaxis type=log;
run;&lt;/PRE&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
    <pubDate>Sat, 12 Nov 2022 02:56:34 GMT</pubDate>
    <dc:creator>Junyong</dc:creator>
    <dc:date>2022-11-12T02:56:34Z</dc:date>
    <item>
      <title>How to Italicize Just One Word in FOOTNOTE?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843883#M23295</link>
      <description>&lt;P&gt;In the following &lt;CODE&gt;sgplot&lt;/CODE&gt;, can I just italicize &lt;CODE&gt;Yahoo Finance&lt;/CODE&gt; in &lt;CODE&gt;footnote&lt;/CODE&gt; so that it can be Source: &lt;EM&gt;Yahoo Finance&lt;/EM&gt; for example?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SNP500.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77227iFCE6F5CCC5140246/image-size/large?v=v2&amp;amp;px=999" role="button" title="SNP500.png" alt="SNP500.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is the working snippet.&lt;/P&gt;&lt;PRE&gt;filename SNP500 url 'https://query1.finance.yahoo.com/v7/finance/download/%5EGSPC?period1=-1388534400&amp;amp;period2=1767225599';

proc import file=SNP500 dbms=csv replace out=SNP500;
run;

ods results=off;
ods listing gpath='!USERPROFILE\Desktop\';
ods graphics/reset imagename='SNP500';
title 'S&amp;amp;P 500 Index';
footnote 'Source: Yahoo Finance';

proc sgplot;
	series x=date y=close;
	yaxis type=log;
run;&lt;/PRE&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Sat, 12 Nov 2022 02:56:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843883#M23295</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2022-11-12T02:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Italicize Just One Word in FOOTNOTE?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843895#M23296</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title 'S&amp;amp;P 500 Index';
footnote"Source: "  font="Albany AMT/italic" "  Yahoo Finance";

proc sgplot data=sashelp.class;
	scatter x=weight y=height;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1668229140503.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77229i90A177115A09422B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1668229140503.png" alt="Ksharp_0-1668229140503.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Nov 2022 04:58:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843895#M23296</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-11-12T04:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to Italicize Just One Word in FOOTNOTE?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843898#M23297</link>
      <description>&lt;P&gt;Or try "ITALIC" option in TITLE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;footnote"Source: "  ITALIC "  Yahoo Finance";
&lt;/PRE&gt;</description>
      <pubDate>Sat, 12 Nov 2022 05:22:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843898#M23297</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-11-12T05:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to Italicize Just One Word in FOOTNOTE?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843963#M23304</link>
      <description>&lt;P&gt;Besides of what&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;already shared you might also consider to also use ODS for the title.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here the docu link as your starting point.&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsproc/n0b6rprbxhai4dn0z9gqwr5jfzhl.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsproc/n0b6rprbxhai4dn0z9gqwr5jfzhl.htm&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Nov 2022 00:08:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Italicize-Just-One-Word-in-FOOTNOTE/m-p/843963#M23304</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-11-13T00:08:34Z</dc:date>
    </item>
  </channel>
</rss>

