Releases: tueda/makefile4latex
Releases · tueda/makefile4latex
0.13.0
0.12.0
Added
- Support for partial updates to
.gitignore(#58).
The root.gitignorefile now contains a user section, separated from the main part by a 10-hash marker line:########## # user-defined rules # You can add your own rules here if needed.make upgradepreserves user-defined rules written below the marker line. - Support for LaTeX Workshop (e56697e, 3d62a2b).
Configuration example:{ "latex-workshop.latex.recipes": [ { "name": "make 🔃", "tools": [ "make" ] } ], "latex-workshop.latex.tools": [ { "name": "make", "command": "make", "args": [ "-C", "%DIR%", "USE_LATEX_WORKSHOP=1", "%DOCFILE%.pdf" ] } ] } - Support SyncTeX with
BUILDDIR(3268d4f).
Changed
- Updated
.gitignore, which is now based onTeX.gitignore(2025-06-13) (28d7a16).
Fixed
- LaTeX errors were not being colorized when using
-file-line-error(20c1c40).
0.11.1
0.11.0
Added
- New target
prettyto run code prettifiers on the source files in the current directory.
Currently, onlylatexindenthas built-in support. By default,make prettyrunslatexindent -l -wd -sfor each.texfile. Target files of the prettifier can be configurable by settingLATEXINDENT_TARGET, for example,LATEXINDENT_TARGET = *.tex *.sty. Note that probably the user wants to customizelatexindentlocal settings (inlocalSettings.yamlorlatexindent.yaml), likedefaultIndentandonlyOneBackUp. (#22) - Configurable target files for linters, by
CHKTEX_TARGETetc. (20f7bc9)
Changed
- Updated
.gitignore, which is now based onTeX.gitignore(2021-12-11). (a3e4eae)