-
Notifications
You must be signed in to change notification settings - Fork 28
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
standalone.cls not found #68
Comments
You need to make sure your latex installation includes standalone.cls. On ubuntu, you can install it like this:
Or you can use |
Hi @mykelk , that helped. |
I got the same error when using the PGFPlotsX as a Plots backend. In Ubuntu 18.04.2 LTS, I needed to do |
In fact, I also needed tlmgr install standalone
tlmgr install luatex85
tlmgr install pgf # this installs tikz.sty
tlmgr install pgfplots
tlmgr update --self --all |
For reference, line 50 here does the install for Github's CI. |
P.S.: I have also needed: |
While using `sphinxcontrib.tikz`, I encountered an error similar to that documented in JuliaTeX/TikzPictures.jl#68, namely, that `standalone.cls` was not found. On Ubuntu Linux 22.04 (and probably earlier), this file is installed with the `texlive-latex-extra` package. The `amsmath` LaTeX packages are installed with the `texlive-latex-base` package; `texlive-latex-extra` depends on that package. Signed-off-by: Geoffrey M. Oxberry <[email protected]>
While using `sphinxcontrib.tikz`, I encountered an error similar to that documented in JuliaTeX/TikzPictures.jl#68, namely, that `standalone.cls` was not found. On Ubuntu Linux 22.04 (and probably earlier), this file is installed with the `texlive-latex-extra` package. To help other users avoid this error, this commit adds that package to the list of Ubuntu Linux package dependencies for `sphinxcontrib.tikz`. Installing this package also ensures that the `amsmath` LaTeX packages are installed. Those LaTeX packages are part of the `texlive-latex-base` package, which is a dependency of `texlive-latex-extra`. Signed-off-by: Geoffrey M. Oxberry <[email protected]>
While using `sphinxcontrib.tikz`, I encountered an error similar to that documented in JuliaTeX/TikzPictures.jl#68, namely, that `standalone.cls` was not found. On Ubuntu Linux 22.04 (and probably earlier), this file is installed with the `texlive-latex-extra` package. To help other users avoid this error, this commit adds that package to the list of Ubuntu Linux package dependencies for `sphinxcontrib.tikz` discussed in `README.rst`. Installing this package also ensures that the `amsmath` LaTeX packages are installed. Those LaTeX packages are part of the `texlive-latex-base` package, which is a dependency of `texlive-latex-extra`. Signed-off-by: Geoffrey M. Oxberry <[email protected]>
I have Ubuntu 20.04 Thank you very much |
On running this snippet
I get this error in Julia (REPL)
Does this not work on Julia REPL?Do I specifically need a notebook for this?
The text was updated successfully, but these errors were encountered: