We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Just to track this here as well. It seems texml sometimes converts colors incorrectly.
E.g., we had TeX sources with
\color{RoyalBlue} \color{RedViolet} \color{Plum} \color{Gray}
where texml output had
\color[RGB]{0, 127, 255} \color[RGB]{150, 0, 168} \color[RGB]{127, 0, 255} \color[RGB]{127, 127, 127}
This was particularly noticeable in that instance because generated SVGs (from tikz using these) no longer matched.
The problem has showed up in several publications now.
The text was updated successfully, but these errors were encountered:
Another example (I had not linked properly): \color{olive} became #7f7f00 as text color but #8d8600 in a tikz SVG.
\color{olive}
#7f7f00
#8d8600
This was changed in the source to #807900, as a result the SVG appears to have that color but the text has #7f7900.
#807900
#7f7900
Sorry, something went wrong.
No branches or pull requests
Just to track this here as well. It seems texml sometimes converts colors incorrectly.
E.g., we had TeX sources with
where texml output had
This was particularly noticeable in that instance because generated SVGs (from tikz using these) no longer matched.
The problem has showed up in several publications now.
The text was updated successfully, but these errors were encountered: