<?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 proc report pretext  posttext 选项 in 欢迎来到SAS中文社区！</title>
    <link>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938203#M73</link>
    <description>&lt;P&gt;为什么逃逸符在&amp;nbsp;proc report pretext 和 posttext 选项中无效。^n是换行符，并且已经定义了^是逃逸符，但是posttext无法换行&lt;/P&gt;&lt;LI-CODE lang="sas"&gt;proc report data=simplze_&amp;amp;Group. nowindows missing headskip headline split="#" 
    style(report) = [just = center font=("times new roman",9pt) color=black
                     posttext = "^n制表人"
                     PROTECTSPECIALCHARS = on]
	style(header)=[just=center font=("times new roman",9pt) color=black background=#f0f0f0]
	style(column)=[font=("times new roman",9pt)];
	column Order DrugID Period Drug_Name Manufacturer;
	define Order /display style(column)=[just=center cellwidth=10%] flow;
	define DrugID /display style(column)=[just=center cellwidth=14% font_weight=bold] flow;
	define Period /display style(column)=[just=center cellwidth=12%] flow;
	define Drug_Name /display style(column)=[just=center cellwidth=30%] flow;
	define Manufacturer /display style(column)=[just=center cellwidth=20%] flow;
run;&lt;/LI-CODE&gt;&lt;P&gt;^&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Aug 2024 03:08:19 GMT</pubDate>
    <dc:creator>JohenPan</dc:creator>
    <dc:date>2024-08-05T03:08:19Z</dc:date>
    <item>
      <title>proc report pretext  posttext 选项</title>
      <link>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938203#M73</link>
      <description>&lt;P&gt;为什么逃逸符在&amp;nbsp;proc report pretext 和 posttext 选项中无效。^n是换行符，并且已经定义了^是逃逸符，但是posttext无法换行&lt;/P&gt;&lt;LI-CODE lang="sas"&gt;proc report data=simplze_&amp;amp;Group. nowindows missing headskip headline split="#" 
    style(report) = [just = center font=("times new roman",9pt) color=black
                     posttext = "^n制表人"
                     PROTECTSPECIALCHARS = on]
	style(header)=[just=center font=("times new roman",9pt) color=black background=#f0f0f0]
	style(column)=[font=("times new roman",9pt)];
	column Order DrugID Period Drug_Name Manufacturer;
	define Order /display style(column)=[just=center cellwidth=10%] flow;
	define DrugID /display style(column)=[just=center cellwidth=14% font_weight=bold] flow;
	define Period /display style(column)=[just=center cellwidth=12%] flow;
	define Drug_Name /display style(column)=[just=center cellwidth=30%] flow;
	define Manufacturer /display style(column)=[just=center cellwidth=20%] flow;
run;&lt;/LI-CODE&gt;&lt;P&gt;^&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 03:08:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938203#M73</guid>
      <dc:creator>JohenPan</dc:creator>
      <dc:date>2024-08-05T03:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc report pretext  posttext 选项</title>
      <link>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938207#M74</link>
      <description>在其它编程语言中，^n 可能表示换行，但 SAS 中并没有这个用法。&lt;BR /&gt;&lt;BR /&gt;要在 proc report 的表头进行文字换行，可以使用“第一行splitchar第二行”的形式，其中，splitchar 由 split= 选项规定。&lt;BR /&gt;&lt;BR /&gt;要在 proc report 的 pretext 或 posttext 中换行，一般有指定的输出对象，以 ODS RTF 为例，使用 \line 或 \par 均可表示换行。如果输出对象为 HTML，使用&amp;lt;/br&amp;gt;可以表示换行。</description>
      <pubDate>Mon, 05 Aug 2024 06:37:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938207#M74</guid>
      <dc:creator>whymath</dc:creator>
      <dc:date>2024-08-05T06:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc report pretext  posttext 选项</title>
      <link>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938208#M75</link>
      <description>&lt;P&gt;非常感谢您的回复。是的，我是输出为RTF，使用\line可以实现换行。&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;目前困惑的点在于为何事先声明了ods escapchar = "^" ，并且protectespecialchar = off关闭，在posttext中无法解析^n为换行符。&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 06:45:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938208#M75</guid>
      <dc:creator>JohenPan</dc:creator>
      <dc:date>2024-08-05T06:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: proc report pretext  posttext 选项</title>
      <link>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938209#M76</link>
      <description>&lt;P&gt;补充一点，即在&lt;SPAN&gt;posttext 无法解析逃逸字符&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 06:46:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/%E6%AC%A2%E8%BF%8E%E6%9D%A5%E5%88%B0SAS%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA/proc-report-pretext-posttext-%E9%80%89%E9%A1%B9/m-p/938209#M76</guid>
      <dc:creator>JohenPan</dc:creator>
      <dc:date>2024-08-05T06:46:54Z</dc:date>
    </item>
  </channel>
</rss>

