<?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: ODS PDF German Umlaut in title, footnote, legend in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38366#M5383</link>
    <description>Dear Cythia,&lt;BR /&gt;
&lt;BR /&gt;
your example works in my system (I use SAS 9.1).&lt;BR /&gt;
But I still had problems with graphs. &lt;BR /&gt;
&lt;BR /&gt;
Then I found the solution. I user ftext=swiss1. That's ok für HTML output. But for PDF output I now use ftext="Helvetica" and now the umlate are displayed correctly.&lt;BR /&gt;
&lt;BR /&gt;
Best regards,&lt;BR /&gt;
Eva</description>
    <pubDate>Fri, 05 Feb 2010 10:57:23 GMT</pubDate>
    <dc:creator>Eva</dc:creator>
    <dc:date>2010-02-05T10:57:23Z</dc:date>
    <item>
      <title>ODS PDF German Umlaut in title, footnote, legend</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38364#M5381</link>
      <description>Dear all,&lt;BR /&gt;
&lt;BR /&gt;
I use ods pdf and with it title, footnote, legend. Text in these do not display correctly when I use a German Umlaut, e.g. ä,ö,ü.&lt;BR /&gt;
I get some wired symols instead. When I use ods pdf text="ä" it works....&lt;BR /&gt;
Yet there are places when I need to use title, footnote, legend.&lt;BR /&gt;
Does anybody know how to diyplay these charcters correctly?&lt;BR /&gt;
&lt;BR /&gt;
Best regards.&lt;BR /&gt;
Eva</description>
      <pubDate>Fri, 08 Jan 2010 15:43:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38364#M5381</guid>
      <dc:creator>Eva</dc:creator>
      <dc:date>2010-01-08T15:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF German Umlaut in title, footnote, legend</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38365#M5382</link>
      <description>Hi:&lt;BR /&gt;
  When I run this code in SAS 9.2 on Windows (after I insert umlauts in the data), I see the umlaut in the tabular output from PROC PRINT and in the LEGEND, TITLE and FOOTNOTE from PROC GCHART...using ODS PDF and the default template for PDF.&lt;BR /&gt;
 &lt;BR /&gt;
  Perhaps you are having a font issue and a font with umlauts is not available, even though the data has umlauts. Or, it could be an NLS issue with system settings. This may be an issue for Tech Support. If you run the code below and do NOT see umlauts in the output, then I would recommend opening a track with Tech Support for more help.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
 [pre]&lt;BR /&gt;
                      &lt;BR /&gt;
** put some umlauts in the data so they will be in the legend;&lt;BR /&gt;
** and in the report as well;&lt;BR /&gt;
data shoes;&lt;BR /&gt;
  set sashelp.shoes;&lt;BR /&gt;
  where region in ('Asia', 'Pacific', 'Canada') and&lt;BR /&gt;
        product contains 'Women';&lt;BR /&gt;
  region = translate(region,'ä','a');&lt;BR /&gt;
  region = translate(region,'Ä','A');&lt;BR /&gt;
  region = translate(region,'ë','e');&lt;BR /&gt;
  region = translate(region,'ö','o');&lt;BR /&gt;
  region = translate(region,'ü','u');&lt;BR /&gt;
  product = translate(product,'Ä','A');&lt;BR /&gt;
  product = translate(product,'ä','a');&lt;BR /&gt;
  product = translate(product,'ë','e');&lt;BR /&gt;
  product = translate(product,'ö','o');&lt;BR /&gt;
  product = translate(product,'ü','u');&lt;BR /&gt;
run;&lt;BR /&gt;
                                                       &lt;BR /&gt;
data class;&lt;BR /&gt;
   set sashelp.class;&lt;BR /&gt;
   name = translate(name,'ä','a');&lt;BR /&gt;
   name = translate(name,'ë','e');&lt;BR /&gt;
   name = translate(name,'ö','o');&lt;BR /&gt;
   name = translate(name,'ü','u');&lt;BR /&gt;
run;&lt;BR /&gt;
                                                          &lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods pdf file='c:\temp\umlaut_grf.pdf';&lt;BR /&gt;
                                            &lt;BR /&gt;
proc print  data=class;&lt;BR /&gt;
  title 'This is my title: ä ë ö ü Ä Ë Ö Ü';&lt;BR /&gt;
  footnote 'This is my footnote: ä ë ö ü Ä Ë Ö Ü';&lt;BR /&gt;
run;&lt;BR /&gt;
ods pdf text='This is my other text: ä ë ö ü Ä Ë Ö Ü';&lt;BR /&gt;
                                   &lt;BR /&gt;
proc gchart data=shoes;&lt;BR /&gt;
  title 'This is my title: ä ë ö ü Ä Ë Ö Ü';&lt;BR /&gt;
  footnote 'This is my footnote: ä ë ö ü Ä Ë Ö Ü';&lt;BR /&gt;
  vbar product / subgroup=region sumvar=sales legend;&lt;BR /&gt;
run; &lt;BR /&gt;
quit;&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
title; footnote;&lt;BR /&gt;
              &lt;BR /&gt;
[/pre]</description>
      <pubDate>Sat, 09 Jan 2010 17:49:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38365#M5382</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-01-09T17:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF German Umlaut in title, footnote, legend</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38366#M5383</link>
      <description>Dear Cythia,&lt;BR /&gt;
&lt;BR /&gt;
your example works in my system (I use SAS 9.1).&lt;BR /&gt;
But I still had problems with graphs. &lt;BR /&gt;
&lt;BR /&gt;
Then I found the solution. I user ftext=swiss1. That's ok für HTML output. But for PDF output I now use ftext="Helvetica" and now the umlate are displayed correctly.&lt;BR /&gt;
&lt;BR /&gt;
Best regards,&lt;BR /&gt;
Eva</description>
      <pubDate>Fri, 05 Feb 2010 10:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38366#M5383</guid>
      <dc:creator>Eva</dc:creator>
      <dc:date>2010-02-05T10:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF German Umlaut in title, footnote, legend</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38367#M5384</link>
      <description>Hi, Eva:&lt;BR /&gt;
  When you move to SAS 9.2, you will be able to get the umlaut automatically without using SWISS1-- since the font rendering and fonts available have been improved between 9.1 and 9.2.&lt;BR /&gt;
 &lt;BR /&gt;
I'm glad you got it working. &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 05 Feb 2010 15:01:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-German-Umlaut-in-title-footnote-legend/m-p/38367#M5384</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-02-05T15:01:52Z</dc:date>
    </item>
  </channel>
</rss>

