Results 17 issues of Geoffrey Poore

It might be worth mentioning that `glob.glob` and `pathlib.Path.glob` work slightly differently. `glob.glob` [treats dotfiles specially](https://docs.python.org/3/library/glob.html), while `pathlib.Path.glob` uses `**` [only to match directories](https://docs.python.org/3/library/pathlib.html#pathlib.Path), not files. It's easy to use...

A note about this will be added to the documentation. `only_code_output()` in `pandoc.py` could be modified based off of `update_parent_node()`. The Lua filter in Codebraid Preview may need modifications to...

enhancement

See https://github.com/gpoore/minted/issues/264#issuecomment-642442238 and https://tex.stackexchange.com/a/548869/10742. `currfile` documentation: https://ctan.org/pkg/currfile. A few limitations with this approach: * Requires `-recorder`. * TeX Live apparently works fine (at least under Windows and Linux according to...

enhancement?

See https://github.com/gpoore/minted/issues/85#issuecomment-669696829 for original source. Using filenames with spaces under Linux without `outputdir` seems to work fine (produces a correct PDF), but gives `catchfile` errors. Using outputdir paths with spaces...

package clash
docs

Example: ``` \documentclass{article} \usepackage{pythontex} \setpythontexpygopt[pycon]{style=bw} \begin{document} \begin{pyconsole} a = 1 a \end{pyconsole} \pycon{a} \end{document} ```

bug

It would be good to have a generic command and environment that allow display, output, and execution to be customized via optional arguments. Rather than using `pycode`, `pyblock`, `pyverbatim`, etc.,...

enhancement

In some cases, code can be written to the `.pytxcode` _after_ the settings have been written. This causes errors, because parsing assumes that settings are last. The new, upcoming format...

enhancement

```latex \documentclass{article} \usepackage{amsmath,amsfonts} \usepackage[keeptemps]{pythontex} \usepackage{siunitx} \begin{document} \begin{pycode} (m, a ) = (14, 3) F = m*a num=1 unit='cm' \end{pycode} \begin{align*} ma =& F&\\ a =& \dfrac{F}{a} = \dfrac{\py{F}}{\py{a}} = \py{a}...

package clash

See http://tex.stackexchange.com/questions/279845. Basically, precompiled preambles will fail due to PythonTeX's use of `\jobname`, and the file(s) that it opens in the preamble. This could be fixed by only opening files...

enhancement

When `\inputpygments` is used with a file that doesn't exist, `multiprocessing`'s `pool.py` gives `AttributeError: 'NoneType' object has no attribute 'decode'`. The Pygments process should instead check for file existence, and...

bug