-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(some?) utf8 encoded characters are transformed into latin1 #17
Comments
I tried your example tex file and it works fine in pdfpc for me. |
Okay, seems my knowledge about encoding is a bit limited, |
Here is my version of
it produces the correct UTF8 encoding:
|
True, with the latest version this works indeed (and also with the version from October 2013. |
added test for cebe#17
In combination with pdflatex and
\usepackage[T1]{fontenc}
utf-8 characters in notes are converted to latin1 which is a problem for pdfpc.With this input (
test.tex
):the following output (
test.pdfpc
) is produced:Note that I have inserted the \366 here manually as my browser converted it to the letter "ö" -
hexdump -C test.pdfpc
shows that this is latin1:With this file pdfpc does not show any notes.
After
recode latin1..utf8 test.pdfpc
this is indeed utf-8:And pdfpc correctly shows "schön" as a note.
Note that
\usepackage[T1]{fontenc}
has an influence on that. Removing that line fromtest.tex
, results in the followingtest.pdfpc
:... which does not work with pdfpc either. ;-)
This happens with the following version of
pdflatex
:My current workaround is to (automatically) call
recode
after each run ofpdflatex
... so it's not a big problem.The text was updated successfully, but these errors were encountered: