We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6246102 commit a781c3eCopy full SHA for a781c3e
src/tikzplotlib/_axes.py
@@ -17,6 +17,7 @@ def _siunitx_texification(string: str) -> str:
17
string = re.sub(r"\smm", r" \\si{\\mm}", string)
18
string = re.sub(r"\s°C", r" \\si{\\celsius}", string)
19
string = re.sub(r"\sA/s", r" \\si{\\angstrom\\per\\second}", string)
20
+ string = re.sub(r"\sAngstrom", r" \\si{\\angstrom}", string)
21
string = re.sub(r"\sg/s", r" \\si{\\gram\\per\\second}", string)
22
string = re.sub(r"\shour", r" \\si{\\hour}", string)
23
string = re.sub(r"\scc", r" \\si{\\cc}", string)
0 commit comments