I am using Mathematica 9.0.0.0 under German Windows 32bit. I am on trying to export and import German text to PDF and re-import it. It seems that there is a confusion about the character encoding. It obviously differs between Export and Import. However, nothing related to the encoding is described in the PDF documentation, nor does specifying CharacterEncoding in PDF import and export seem to make any difference.
ImportString[ExportString[
"This is a string. Aber was ist mit äöü, ß und ÄÖÜ? Also x\.b2 und \y\.b3 measured in µm",
"PDF"]]
I wonder if there is a work-around which doesn't require a complete re-mapping. PDF export is slow, and doing it character by character will probably take hours.
CharacterEncoding -> "UTF-8"inside theStylefunction. The\.b2and\.b3don't work yet. Maybe one day someone will find out how to make these work, too. – Juergen Bosse Apr 1 at 10:59Style["This is a string. Aber was ist mit äöü, ß und ÄÖÜ? Also x\.b2 \ und y\.b3 measured in \[Micro]m", FontFamily -> "Arial", CharacterEncoding -> "ASCII"]– Juergen Bosse Apr 1 at 11:20