Skip to content
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

Doesn't translate accents #182

Closed
BeastyBlacksmith opened this issue Aug 19, 2021 · 1 comment · Fixed by #223
Closed

Doesn't translate accents #182

BeastyBlacksmith opened this issue Aug 19, 2021 · 1 comment · Fixed by #223

Comments

@BeastyBlacksmith
Copy link

julia> latexify("ç")
L"$ç$"

julia> latexify("ã")
L"$ã$"

should become

julia> latexify("ç")
L"\c{c}"

julia> latexify("ã")
L"\~{a}"

I'd say.

@korsbo
Copy link
Owner

korsbo commented Aug 19, 2021

Hmmm, it seems like the massive unicode -> latex dict in src/unicode2latex.jl is incomplete. That's a bit troubling since I have no desire to manually curate such a mapping. Any individual mappings could easily be PRd by just adding entries, but the deeper problem is why there are any such mappings missed at all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants