skoehler

Results 47 comments of skoehler

I worked on the driver in the context of a commercial project. My changes are not available in public domain. I did a lot of changes and reviewed all code...

Still not fixed in 1.0. Also your comment "As I have no plans to move this addon forward, I figured out this would be a good time to name it...

Am 27.06.2011 08:15, schrieb protz: > Is the abbreviation an option in Thunderbird? If yes, where can I find it? Thanks for reminding me, I had indeed forgotten this issue....

I see multiple action items here: - document that selecting the compression algo and level depends on an experimental feature - logging an error if a feature is requested that...

Or you properly escape the percent sign when generating the LaTeX code. This works: ``` \documentclass{article} \usepackage{graphicx} \catcode`\%=12 \newcommand\pcnt{%} \catcode`\%=14 \begin{document} \includegraphics[width=1cm]{test\pcnt ing.png} \end{document} ``` Note the space after \pcnt....

And before you ask, here's how to escape curly braces: ``` \documentclass{article} \usepackage{graphicx} \catcode`\%=12 \catcode`\{=12 \catcode`\}=12 \newcommand\pcnt% \newcommand\curlya{ \newcommand\curlyb} \catcode`\%=14 \catcode`\{=1 \catcode`\}=2 \begin{document} \includegraphics[width=1cm]{test.png} \includegraphics[width=1cm]{test ing.png} \includegraphics[width=1cm]{test^ing.png} \includegraphics[width=1cm]{test_ing.png} \includegraphics[width=1cm]{test\pcnt ing.png}...