Skip to content

Commit

Permalink
Taking advantage of the markdown in the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsd committed Jul 27, 2014
1 parent 953972b commit 1772d72
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions Readme.md
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

0 comments on commit 1772d72

Please sign in to comment.