-
Notifications
You must be signed in to change notification settings - Fork 10
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
Is it neccessary that UnitfulStrings outlive the recipe? #74
Comments
Not sure. What I imagine could happen is that when constructing a plot in multiple steps, |
Yes-ish. We need to keep track of both the unit and the manual part of the label separately so that we can
Perhaps there's another option, but it gets pretty tricky. What does pgfplots need to know it for? |
It does escape certain characters, e.g. if you want to label something "100%". |
Edit dumb.
If you have a good suggestion of how else we could convey and store this information I'd love to hear it. Otherwise maybe a guide interface somehow? |
I am asking because the pgfplots backend does some processing on labels etc. depending on whether its a
LaTeXString
or not.But since
UnitfulString{LaTeXString, ...}
is not aLaTeXString
, it goes the wrong path.I could add extra handling for this, but in general I'd prefer if recipes didn't change the type of inputs.
The text was updated successfully, but these errors were encountered: