diff options
author | Karl Berry <karl@freefriends.org> | 2022-02-05 21:24:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-02-05 21:24:24 +0000 |
commit | 0e33ca376dc3608120a8432ca8967d60e3c14407 (patch) | |
tree | a40c6e3880481cb291cf075962f1cf32242ccde6 /Master/texmf-dist/doc/lualatex | |
parent | f1e81a3aeba249ef91f772aecea8a2147963cbd2 (diff) |
pyluatex (5feb22)
git-svn-id: svn://tug.org/texlive/trunk@61901 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/lualatex')
-rw-r--r-- | Master/texmf-dist/doc/lualatex/pyluatex/README.md | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf | bin | 82190 -> 84163 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex | 11 |
3 files changed, 9 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/lualatex/pyluatex/README.md b/Master/texmf-dist/doc/lualatex/pyluatex/README.md index feb77a04bcf..a6faac70c23 100644 --- a/Master/texmf-dist/doc/lualatex/pyluatex/README.md +++ b/Master/texmf-dist/doc/lualatex/pyluatex/README.md @@ -50,7 +50,7 @@ executed. For this reason, it is recommended to compile trusted documents only. * Linux, macOS or Windows Our automated tests currently use TeX Live 2021 and Python 3.7+ on -Ubuntu 20.04, macOS Catalina 10.15 and Windows Server 2019. +Ubuntu 20.04, macOS Big Sur 11 and Windows Server 2019. ## License [LPPL 1.3c](http://www.latex-project.org/lppl.txt) for LaTeX code and diff --git a/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf b/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf Binary files differindex 0318eda2cbd..23699dd22bd 100644 --- a/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf +++ b/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf diff --git a/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex b/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex index 86374249af9..594d1c0e90b 100644 --- a/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex +++ b/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex @@ -15,7 +15,7 @@ \usepackage{url} \title{The \emph{pyluatex} package} \author{Tobias Enderle\\\url{https://github.com/tndrle/PyLuaTeX}} -\date{v0.4.0 (2021/11/05)} +\date{v0.4.1 (2022/02/04)} \begin{document} \maketitle \raggedright @@ -139,8 +139,13 @@ For an example, see the Typesetting Code section. By default, PyLuaTeX aborts the compilation process when Python reports an error. If the \inlcode|ignoreerrors| option is set, the compilation process is not aborted.\\[0.5ex] \textit{Example:} \inlcode|\usepackage[ignoreerrors]{pyluatex}| +\item \inlcode|shutdown|\\[0.5ex] + Specifies when the Python process is shut down. (default: \inlcode|veryveryend|)\\[0.5ex] + \textit{Options:} \inlcode|veryveryend|, \inlcode|veryenddocument|, \inlcode|off|\\[0.5ex] + PyLuaTeX uses the hooks of the package \textit{atveryend} to shut down the Python interpreter when the compilation is done. With the option \inlcode|veryveryend|, Python is shut down in the \inlcode|\AtVeryVeryEnd| hook. With the option \inlcode|veryenddocument|, Python is shut down in the \inlcode|\AtVeryEndDocument| hook. With the option \inlcode|off|, Python is not shut down explicitly. However, the Python process will shut down when the LuaTeX process finishes even if \inlcode|off| is selected. Using \inlcode|off| on Windows might lead to problems with SyncTeX, though.\\[0.5ex] + \textit{Example:} \inlcode|\usepackage[veryenddocument]{pyluatex}| \end{itemize} -Package options (except for \inlcode|executable|) can be changed in the document with the +Package options (except for \inlcode|executable| and \inlcode|shutdown|) can be changed in the document with the \inlcode|\pyoption| command, e.g. \inlcode|\pyoption{verbose}{true}| or \inlcode|\pyoption{ignoreerrors}{false}|. \subsection{Macros} @@ -212,7 +217,7 @@ in your environment definition, e.g. \item Linux, macOS or Windows \end{itemize} Our automated tests currently use TeX Live 2021 and Python 3.7+ on -Ubuntu 20.04, macOS Catalina 10.15 and Windows Server 2019. +Ubuntu 20.04, macOS Big Sur 11 and Windows Server 2019. \section{Typesetting Code} Sometimes, in addition to having Python code executed and the output written to your document, you also want to show the code itself in your document. |