<?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 Tab character and PDF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tab-character-and-PDF/m-p/71224#M8173</link>
    <description>I am writing a PDF file.&lt;BR /&gt;
I like to have a TAB character inserted several places like:&lt;BR /&gt;
	title "this is the" TAB " title, which" Tab " is a test";&lt;BR /&gt;
This:&lt;BR /&gt;
	title "this is the" "09"x " title, which" "09"x " is a test";&lt;BR /&gt;
does not work.&lt;BR /&gt;
&lt;BR /&gt;
What is the correct way.&lt;BR /&gt;
&lt;BR /&gt;
Masoud</description>
    <pubDate>Fri, 10 Sep 2010 19:54:33 GMT</pubDate>
    <dc:creator>mpajoh</dc:creator>
    <dc:date>2010-09-10T19:54:33Z</dc:date>
    <item>
      <title>Tab character and PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tab-character-and-PDF/m-p/71224#M8173</link>
      <description>I am writing a PDF file.&lt;BR /&gt;
I like to have a TAB character inserted several places like:&lt;BR /&gt;
	title "this is the" TAB " title, which" Tab " is a test";&lt;BR /&gt;
This:&lt;BR /&gt;
	title "this is the" "09"x " title, which" "09"x " is a test";&lt;BR /&gt;
does not work.&lt;BR /&gt;
&lt;BR /&gt;
What is the correct way.&lt;BR /&gt;
&lt;BR /&gt;
Masoud</description>
      <pubDate>Fri, 10 Sep 2010 19:54:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tab-character-and-PDF/m-p/71224#M8173</guid>
      <dc:creator>mpajoh</dc:creator>
      <dc:date>2010-09-10T19:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Tab character and PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tab-character-and-PDF/m-p/71225#M8174</link>
      <description>Hi:&lt;BR /&gt;
  A PDF file is a document that contains your output --as it would be sent directly to a printer. Word processors generally recognize the TAB character. A PDF file is not a word processing document. You can build a PDF file -from- a word processing document if you have the right Adobe plug-in for your word processor.&lt;BR /&gt;
 &lt;BR /&gt;
  However, while Word or Excel might recognize the '09'x as a TAB character, I do not believe that ODS PDF will use a TAB character or recognize one.&lt;BR /&gt;
&lt;BR /&gt;
  If you do want to space your title so that you have output like this:&lt;BR /&gt;
[pre]&lt;BR /&gt;
This is the              title              which is a test&lt;BR /&gt;
[/pre]&lt;BR /&gt;
across the top of your ODS output, you can use TITLE and FOOTNOTE controls to left, center or right-justify text strings. The program below has an example of how to do this. (The technique works for most destinations, like RTF and HTML and PDF.) The example also shows the use of ODS ESCAPECHAR to insert page X of Y page numbering in the title or the footnote of a PDF document.&lt;BR /&gt;
    &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
options nodate nonumber;&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods escapechar='^';&lt;BR /&gt;
ods pdf file='c:\temp\showtitle.pdf';&lt;BR /&gt;
                                &lt;BR /&gt;
title j=l 'This is the' j=c 'title, which' j=r 'is a test';&lt;BR /&gt;
title2 j=l h=20pt 'BIG' j=c h=10pt 'MEDIUM' j=r h=6pt 'SMALL';&lt;BR /&gt;
title3 j=l color=green 'Green' j=c color=cyan 'Cyan' j=r c=purple 'Purple';&lt;BR /&gt;
title4 j=l 'Study 123' j=r "Produced: &amp;amp;sysdate9";&lt;BR /&gt;
title5 j=r 'Page ^{thispage} of ^{lastpage}';&lt;BR /&gt;
footnote j=l f='Courier New' h=12pt 'The purpose of this footnote is to show how to left justify text';&lt;BR /&gt;
footnote2 j=c '-^{thispage}-';&lt;BR /&gt;
footnote3 j=r 'Something else';&lt;BR /&gt;
footnote4 j=l 'Left' j=c 'Center' j=r 'Right';&lt;BR /&gt;
                       &lt;BR /&gt;
proc print data=sashelp.class(obs=3);&lt;BR /&gt;
run;&lt;BR /&gt;
                &lt;BR /&gt;
proc print data=sashelp.shoes(obs=5);&lt;BR /&gt;
run;&lt;BR /&gt;
                &lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Sat, 11 Sep 2010 01:22:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tab-character-and-PDF/m-p/71225#M8174</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-09-11T01:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Tab character and PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tab-character-and-PDF/m-p/71226#M8175</link>
      <description>Thanks for the help.</description>
      <pubDate>Mon, 13 Sep 2010 13:16:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tab-character-and-PDF/m-p/71226#M8175</guid>
      <dc:creator>mpajoh</dc:creator>
      <dc:date>2010-09-13T13:16:55Z</dc:date>
    </item>
  </channel>
</rss>

