-
Notifications
You must be signed in to change notification settings - Fork 19
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
TexLive don't support options: --aux-directory and --include-directory #2
Comments
I found a workaround for Texlive, using following option to replace
|
That option helps but I'm not able to build the example on macOS with TeXLive. Almost every |
- Also removed style and lexer submodules
I've moved away from Try pulling the latest changes and running:
(see the README if you do not have |
Works for me! Many thanks! I found it useful to install dependencies in a Julia environment using
and modifying diff --git a/latexmkrc b/latexmkrc
index 2efd607..637bade 100644
--- a/latexmkrc
+++ b/latexmkrc
@@ -35,7 +35,7 @@ sub mypythontex {
}
sub pull_julia_code {
- system("julia --color=yes jl/pull_julia_code.jl");
+ system("julia --project=tufte_beamer --color=yes jl/pull_julia_code.jl");
}
pull_julia_code(); |
That's a great idea. If you'd like to submit a PR I'd be happy to merge it in! |
Those options only exists in MiKtex. Texlive only supports an option
--output-directory
for output, but it lacks an option for include dirs.The text was updated successfully, but these errors were encountered: