Skip Menu |

This queue is for tickets about the LaTeX-Encode CPAN distribution.

Report information
The Basics
Id: 85189
Status: resolved
Priority: 0/
Queue: LaTeX-Encode

People
Owner: Nobody in particular
Requestors: alexk [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.091



Subject: some character encodings introduce unintended whitespace
use LaTeX::Encode; print latex_encode( "Häberle" )."\n"; # output: "H\"a berle" Changing the character encodings from e.g.: chr(0xe4) => '\\"a', # ä - ä to: chr(0xe4) => '\\"{a}', # ä - ä would help at first glance. Being a LaTeX novice I do not know if this approach introduces side effects. Thank you very much in advance. Alexander
On Sat May 11 07:46:16 2013, ALEXK wrote: Show quoted text
> use LaTeX::Encode; > print latex_encode( "Häberle" )."\n"; > > # output: "H\"a berle" > > Changing the character encodings from e.g.: > chr(0xe4) => '\\"a', # ä - ä > > to: > chr(0xe4) => '\\"{a}', # ä - ä > > would help at first glance. Being a LaTeX novice I do not know if this > approach introduces side effects. > > Thank you very much in advance. > Alexander
I haven't been able to reproduce this. I think it seems to have been fixed in 0.91.