Nico Schlömer

Results 516 comments of Nico Schlömer
trafficstars

I only got to the bottom of it after [I asked the question on tex.so](https://tex.stackexchange.com/a/633447/13262). You'll also find the expansion there.

For what it's worth, this only affects numbered equations in math _environments_. Things like ``` \tag{1} x = 1 ``` are fine. Only if you wrap it in any environment,...

@zhangpeng96 Your `trust` parameter is malformed. It doesn't actually accept a list, and the reason why this is work is that KaTeX evaluates the array as `true`, so everything is...

I just converted a small note of mine from LaTeX to Markdown + KaTeX + Plotly.js on a GitHub Wiki page, https://github.com/nschloe/colorio/wiki/On-the-conversion-from-OSA-UCS-to-CIEXYZ. The only thing that was really tedious is...

I just found an easier way to handle this. Just run [`stubgen`](https://mypy.readthedocs.io/en/stable/stubgen.html) from mypy in the package, and move the `pyi` files into the source tree. Don't forget to include...

That's cool! Do you know if it's possible to pass those through via `pyproject.toml`'s ```toml build-backend = "nuitka.distutils.Build" ``` ?

The `build` folks [say](https://github.com/pypa/build/issues/444#issuecomment-1064087997) that I'll need to wrap my own `class Build()` around Nuitka's, which I'll happily do. I just need to figure out how to set that `--no-pyi`...

> I did not find any way to pass options through setup.cfg I found that one can run ``` python3 -m build --no-isolation --config-setting=--opt=5 ``` to pass options to the...

Can you let me know which option I have to add to which file to suppress the default `.pyi` generation? > It might have to look at the nuitka.OptionParsing objects...

I know of ``` nuitka3 --no-pyi-file ``` (which I assume you refer to by "`--help`") but that doesn't help me since I never run `nuitka3` directly. I build my projects...