使用 Courier New 字体样式时,页面中不显示某些土耳其语字符。
<apex:page renderAs="pdf">
<table style="font-family : Corier New ; font-size:80%">
<tr align="left"><td style="width:40px;"/>
<td>
öçşığüÖÇŞİĞÜ
</td>
</tr>
</table>
...
输出:öçüÖÇÜ
<apex:page renderAs="pdf">
<table style="font-family : Arial Unicode MS ; font-size:80%">
<tr align="left"><td style="width:40px;"/>
<td>
öçşığüÖÇŞİĞÜ
</td>
</tr>
</table>
...
输出:öçşığüÖÇŞİĞÜ
请帮我