The goal of this image is to make it super easy to have a turn-key LaTeX setup ;)
first time takes a while
make
On your computer in the same directory you create your LaTeX folder, call the folder tex/
- Store your
.tex
files (or folders) here. - Any files (like pdfs) you create in the LaTeX box will be available here.
mkdir tex
make ssh
latex a file
latex doc.tex
turn the dvi into a pdf
dvipdfm doc
Try out other approaches if this doesn't work, but I've found it works great.
latex math.tex
dvips -Ppdf -G0 math.dvi
ps2pdf math.ps
At the bottom of your document, let's say awesome.tex
include
\newpage
\bibliographystyle{cell}
\bibliography{sources}
\bibliography
is referencing sources.bib
in the current directory. Then run:
latex awesome.tex
bibtex awesome.tex
latex awesome.tex
latex awesome.tex