1LLMK(1) llmk manual LLMK(1)
2
3
4
6 llmk - Light LaTeX Make
7
9 llmk [OPTION]... [FILE]...
10
12 llmk is yet another LaTeX-specific build tool. Its aim is to provide a
13 simple way to write down workflows for processing LaTeX documents. The
14 only requirement is the texlua(1) program.
15
16 If one or more FILE(s) are specified, llmk reads the TOML fields or
17 other supported magic comments in the files. Otherwise, it will read
18 the special configuration file llmk.toml in the working directory.
19 Then, llmk will execute the specified workflow to typeset the LaTeX
20 documents.
21
23 -c, --clean
24 Remove the temporary files such as *.aux and *.log.
25
26 -C, --clobber
27 Remove all generated files including final PDFs.
28
29 -dCAT, --debug=CAT
30 Activate debug output restricted to CAT.
31
32 -D, --debug
33 Activate all debug output (equal to "--debug=all").
34
35 -h, --help
36 Print this help message.
37
38 -n, --dry-run
39 Show what would have been executed.
40
41 -q, --quiet
42 Suppress warnings and most error messages.
43
44 -s, --silent
45 Silence messages from called programs.
46
47 -v, --verbose
48 Print additional information (e.g., running commands).
49
50 -V, --version
51 Print the version number.
52
54 0 Success.
55
56 1 General error.
57
58 2 Failure executing the workflow. The exit status of the external
59 program is reported in an error message.
60
61 3 Parser error.
62
63 4 Type error.
64
66 Report bugs to https://github.com/wtsnjp/llmk/issues.
67 Source: https://github.com/wtsnjp/llmk
68
70 Copyright 2018-2020 Takuto ASAKURA (wtsnjp).
71 License: The MIT License https://opensource.org/licenses/mit-license.
72 This is free software: you are free to change and redistribute it.
73
75 The full documentation is maintained as a PDF manual. The command
76
77
78
79 texdoc llmk
80
81
82
83 should give you access to the complete manual.
84
85
86
87llmk 0.2.0 October 2020 LLMK(1)