-
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
A few changes and improvements #15
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Raphaël Beamonte <[email protected]>
Signed-off-by: Raphaël Beamonte <[email protected]>
…ple overlays Signed-off-by: Raphaël Beamonte <[email protected]>
Signed-off-by: Raphaël Beamonte <[email protected]>
Signed-off-by: Raphaël Beamonte <[email protected]>
Signed-off-by: Raphaël Beamonte <[email protected]>
.ca |
Works nicely with overlay specifications now but has problems with character encoding: utf-8 characters in notes are converted to latin1 which is a problem for pdfpc. This could be due to the processing of the notes (to support In my example |
thats bad, any idea how to fix this? |
Will try and check if I can fix that as soon as possible. I tried a bit, and it seems that when I removed the \unexpanded as we need to resolve \ and \par, it also expands the UTF-8 characters. Any idea on how to expand only some commands ? |
@xaf With this input ( \documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{../includes/pdfpcnotes}
\begin{document}
\begin{frame}
schön
\pnote{- schön}
\end{frame}
\end{document} I get the following output (
Note that I have inserted the \366 here manually as my browser converted it to the letter "ö" -
With this file pdfpc does not show me any notes. After
And pdfpc correctly shows "schön" as a note. Note that
... which does not work with pdfpc either. ;-) This happens with the following version of
My current workaround is to (automatically) call |
You are right. This also happens with the old/current version. I will create an issue for this problem. |
Can we somehow fast-track the font size in 772a43b? Given that the generated pdfpc flie often seems to require some post-processing, I suggest optionally writing to a differently named file, e.g. |
Those commits allow to fix a number of different problems that I found using pdfpc-latex-notes. Moreover, some new features are provided, such as managing the font size of the notes as a package option (not to have to edit the generated pdfpc file each time) and managing the use for \ and \par in notes without needing to use a sed in the generated pdfpc file.