-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
Invalid tex in regression lecture (and others?) #181
Comments
See https://github.com/QuantEcon/lecture-datascience.myst/blob/main/lectures/applications/regression.md Is there a simple regex you could try in vscode to globally look for |
What we want is to find all incorrect instances, right? So would a better search string be searching for a |
Yes that is what I meant! Thanks! |
But like I said, not worth more than 5 minutes. The way to test this all is to generate these and check that it doesn't break in HTML, then with the deployed notebooks load them in |
Saving for my reference later: a working regex for this is:
(ensures phrase starts with |
is this one updated already? |
The regression lecture is using unescaped latex in a name. This seems to work in the html renderer, but not in the katex one used in vscode jupyter notebooks.
That is,
is incorrect and should be
or something similar.
We should look to see if there are other locations that could have this issue.
The text was updated successfully, but these errors were encountered: