Auto merge of #71 - matthiasbeyer:paper-deps-cleanup, r=matthiasbeyer

doc/default.nix: List dependencies for building the paper explicitely

Alters the `default.nix` in the `doc/` folder to list the (latex-)dependencies for building the paper explicitly, rather than listing some random collections which may or may not contain the required packages.

Just relevant for nix(os) users. Anyways helpful for others, as they know which latex packages to install for building the doc.
This commit is contained in:
Homu 2016-01-08 21:43:23 +09:00
commit cfa62e85ef

View file

@ -7,20 +7,43 @@ let
(pkgs.texlive.combine { (pkgs.texlive.combine {
inherit (pkgs.texlive) inherit (pkgs.texlive)
scheme-small scheme-basic
algorithms
cm-super amsfonts
collection-basic amsmath
collection-fontsextra lm
collection-fontutils ifxetex
collection-langenglish ifluatex
collection-latex eurosym
collection-latexextra listings
collection-latexrecommended fancyvrb
collection-mathextra # longtable
collection-pictures booktabs
collection-plainextra
collection-science # no graphics...
# graphicx
# grffile
hyperref
ulem
geometry
setspace
babel
# optionals
upquote
microtype
csquotes
# We have no citation support
# natbib
# biblatex
# bibtex
# biber
# some more, not listed in the pandoc docs
mathtools
enumitem
; ;
}) })