반응형
이전 포스팅을 먼저 보고 오려면 아래 링크 Click
2022.05.04 - [끄적이는 통계분석/SAS] - SAS로 RTF 파일 출력하기 1
반응형
4. TOC (Table of Contents) 생성
여러 방법이 있지만, 원하는 부분에 직접 TC를 지정하여 표 목록을 생성 가능하다는 면에서 이 방법을 사용한다.
ods listing close; options nodate nonumber orientation=portrait; ods rtf file="Z:\출력파일명.RTF" wordstyle="{\s1 Heading 1;}"; ods escapechar = "^"; Title1 "제목 1"; Title2 "제목 2"; Footnote1 "주석 1"; Footnote2 "주석 2"; ods rtf text="^S={color=black font_size=10pt font_weight=bold}{\s1\tc Hello world 1}"; ods rtf text="^S={color=green font_size=12pt font_weight=medium}{\s1\tc Hello world 2}"; ods rtf text="^S={color=red font_size=14pt font_weight=medium}{\s1\tc Hello world 3}"; ods rtf text="^S={just=c} {\fs24\qc Table of contents} {\field{\f3\*\fldinst {\\TOC \\f \\h}}}"; ods rtf close; ods listing; |
여기서 Ctrl+a, F9를 순차적으로 입력하면
5. TOC (Table of Contents)에 탐색창 제목 표시하기
ods listing close; options nodate nonumber orientation=portrait; ods rtf file="Z:\출력파일명.RTF" wordstyle="{\s1 Heading 1;}"; ods escapechar = "^"; Title1 "제목 1"; Title2 "제목 2"; Footnote1 "주석 1"; Footnote2 "주석 2"; ods rtf text="^S={color=black font_size=10pt font_weight=bold}{\pard\s1\tc Hello world 1\par}"; ods rtf text="^S={color=green font_size=12pt font_weight=medium}{\pard\s1\tc Hello world 2\par}"; ods rtf text="^S={color=red font_size=14pt font_weight=medium}{\pard\s1\tc Hello world 3\par}"; ods rtf text="^S={just=c} {\fs24\qc Table of contents} {\field{\f3\*\fldinst {\\TOC \\f \\h}}}"; ods rtf close; ods listing; |
반응형
'끄적이는 프로그래밍 > SAS 프로그래밍' 카테고리의 다른 글
Mock-up shells(TFLs) 와 통계분석 결과 결합하기 (SAR) (0) | 2022.08.16 |
---|---|
SAS로 RTF 파일 출력하기 4 (proc sgplot) (0) | 2022.08.11 |
SAS로 RTF 파일 출력하기 3 (proc report) (2) | 2022.08.09 |
SAS로 RTF 파일 출력하기 1 (1) | 2022.05.04 |
임상통계 분석에서의 clopper-pearson's confidence interval 정확한 계산 (2) | 2019.04.08 |