-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Taking advantage of the markdown in the readme
- Loading branch information
Showing
1 changed file
with
16 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,27 @@ | ||
To install locally on *nix systems, first determine your texmf home folder: | ||
# labtex | ||
|
||
$ TEXMFHOME = `kpsewhich -var-value=TEXMFHOME` | ||
This is a collection of LaTeX styles I've used in my grad school lab. They | ||
might come in handy at some point. | ||
|
||
And then add the sty files to it: | ||
## Installation | ||
|
||
$ mkdir -p $TEXMFHOME/tex/latex/labtex | ||
$ cp *.sty $TEXMFHOME/tex/latex/labtex/ | ||
To install locally on *nix systems, first determine your texmf home folder | ||
and then copy the files there: | ||
|
||
$ TEXMFHOME = `kpsewhich -var-value=TEXMFHOME` | ||
$ mkdir -p $TEXMFHOME/tex/latex/labtex | ||
$ cp *.sty $TEXMFHOME/tex/latex/labtex/ | ||
|
||
In your .tex document, add | ||
|
||
\usepackage{labtex} | ||
\usepackage{labtex} | ||
|
||
after you include all other packages. Alternatively, you could just copy | ||
the sty file you need into the same folder as the document you are | ||
compiling. | ||
|
||
I *think* the dependencies are only | ||
amsmath.sty and amsfonts.sty. | ||
## Dependencies | ||
|
||
* `amsmath.sty` | ||
* `amsfonts.sty` | ||
* anything else I might have missed |