]> gitweb.michael.orlitzky.com - mjotex.git/blob - README
9c7673543654af7a85e314f6aa6ebdd4fc2eec33
[mjotex.git] / README
1 == What ==
2
3 My personal library of LaTeX functions, macros, operators, whatever.
4
5 == How ==
6
7 In the makefile of your project, you should list out the pieces of
8 mjotex that you use. For example,
9
10 MJOTEX = mjo-fonts mjo-theorems
11
12 The absolute paths to those libraries, on your system, can be found
13 using "kpsewhich" from the kpathsea suite:
14
15 MJOTEXPATHS = $(shell kpsewhich $(MJOTEX))
16
17 Now add those as dependencies of your document:
18
19 example.pdf: example.tex example.bbl ... $(MJOTEXPATHS)
20
21 If you're not planning on publishing your document, great, you're
22 done. If you are, you probably also want to create a "dist" target
23 that will bundle all of your nonstandard TeX libraries along with the
24 code for your document.
25
26 A full makefile example is provided in the repository.