torik42
torik42
This project is great and together with LanguageTool the best LaTeX spellchecker I have seen so far. However, there are some reasonable PRs (and more issues) which haven’t been touched...
This is the continuation of #199 after the transfer. Old discussion: @torik42: > This PR adds macros `\crefalias`, `\cpageref`, `\Cpageref`, `\cpagerefrange`, `\Cpagerefrange`, `\lcnamecref`, `\lcnamecrefs`, `\namecref`, `\nameCref`, `\namecrefs` and `\nameCrefs` from...
This is the continuation of #198 after the transfer. Old discussion: @torik42: > This PR adds support for `\extratitle`, `\subtitle` and `\subject` whenever a KOMA script class is used. To...
This is the continuation of #196 after the transfer. Old discussion: @torik42: > So far only the directly printed title of the commands `\section` and similar are checked. It would...
It would be nice to have support for the `beamer` class which allows creating presentations with LaTeX. Next to implementing all the commands, the problem is that they use new...
It would be great to have a macro like ```python Macro(parms, '\\LTextract', args='A', extract='#1') ``` which could be used to check parts of custom commands separately. The user would maybe...
I think the `multline` environment in the implementation of the amsmath package is misspelled. It should not be `multiline`. While this is easy to fix, there is another issue: In...
It would be nice to have support for `\intertext` from amsmath and `\shortintertext` from mathtools. They are used in align environment for text between two equations, e.g. ```latex We have...
Having the following two files ```latex % main.tex This is some text\footnote{Mistakke}. ``` ```latex % chap.tex \LTinput{main.tex} This is some text. ``` I get the following output from YaLafi This...
Whenever a LaTeX error is created with `utils.latex_error` two things happen: the error is written to `stderr` and `LATEXXXERROR` is added to the text send to LT. The latter is...