I am using SAS EG (Version: 8.3 (8.3.0.103) (64-bit))
How can I bold only the first word (In the following ods pdf text= statement, "Introduction") in my text in a report? Please see the code below.
ods _all_ close;
ods escapechar='^';
ods pdf style=pearl
file="\\--------------abc.pdf"
notoc startpage=no NOGTITLE NOGFOOTNOTE style=htmlblue;
options nodate number leftmargin=.5in rightmargin=.5in;
ods pdf text= "^S={ font_size= 9pt}Introduction: For example, in Word or Excel, you would type a sentence and then highlight the word you wanted to have bold and then click the B (bold icon) on the toolbar. SAS data values are different from what you see in Word or Excel. SAS data values do not have colors or fonts applied to them as they are stored in the SAS data set.";
ods pdf close;
... View more