You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
There's no automatic translation but isn't it possible to use your own format as in the documentation? Something like (untested):
functionstatus_fmt(x)
if x =='✔'@sprintf("\check")
elseif x =='✗'@sprintf("\\(\times\\)")
else@sprintf(x)
endend
fmt_override =Dict(:status=> status_fmt)
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.The text was updated successfully, but these errors were encountered: