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

Unicode characters #54

Open
amontoison opened this issue Apr 29, 2020 · 2 comments
Open

Unicode characters #54

amontoison opened this issue Apr 29, 2020 · 2 comments

Comments

@amontoison
Copy link
Member

Unicode characters are not converted by latex_table function. It will be a nice feature to add automatic conversion for them. I wanted to use and for the status column.

@dpo
Copy link
Member

dpo commented Apr 29, 2020

There's no automatic translation but isn't it possible to use your own format as in the documentation? Something like (untested):

function status_fmt(x)
  if x == ''
    @sprintf("\check")
  else if x == ''
    @sprintf("\\(\times\\)")
  else
    @sprintf(x)
  end
end
fmt_override = Dict(:status => status_fmt)

@amontoison
Copy link
Member Author

amontoison commented Apr 29, 2020

I can use my own format but I think It should not be difficult to do automatic translation. I will try to add it.

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

No branches or pull requests

2 participants