The print results template, doesn't use the field placeholders in the same manner as the other templates. It uses a block to print all the address info at one time.
Like this:
Name
Address 1
Address 2
City State Country Zip
Telephone
Fax
Email
Website
User1
User2
User3
User4
User5
If wanted to change this format, you would have to edit he PHP code directly, which is printresult.php.
An example of making the Name print out in bold...
CODE
Find this line of code on line 43
$str1=str_replace("{nameonly}",mysql_result($data,0,"name"),$str1);
Then edit it to look like this...
CODE
$str1=str_replace("{nameonly}","<strong>".mysql_result($data,0,"name")."</strong>",$str1);
Notice we added
"<strong>". and
."</strong>" around the
mysql_result(xxxx)