为什么逃逸符在 proc report pretext 和 posttext 选项中无效。^n是换行符,并且已经定义了^是逃逸符,但是posttext无法换行 proc report data=simplze_&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; ^
... View more