-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows or prohibits shell command execution from within TeX files. The use case here is to allow users to download images from within the build process, e.g. compiling something like this with `lualatex`: \documentclass{article} \usepackage{luacode} \usepackage{graphicx} \begin{document} \begin{luacode*} os.execute("curl -o apod.jpg https://apod.nasa.gov/apod/") \end{luacode*} \includegraphics{apod.jpeg} \end{document} To this end, I've included `curl` into the base image. Fixes: #152
- Loading branch information
Showing
5 changed files
with
139 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ RUN <<-eot | |
chktex \ | ||
cm-super \ | ||
context \ | ||
curl \ | ||
dvidvi \ | ||
dvipng \ | ||
feynmf \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters