-
Notifications
You must be signed in to change notification settings - Fork 5
/
texlive-set.nix
29 lines (28 loc) · 975 Bytes
/
texlive-set.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pkgs:
/*
let
texLivePaths = with pkgs; [
texLive texLiveExtra lmodern texLiveCMSuper
texLiveLatexXColor texLivePGF
texLiveBeamer texLiveModerncv tipa texLiveContext
texDisser lmmath texinfo5 tex4ht texLiveModerntimeline
];
myTexLive = pkgs.texLiveAggregationFun {
paths = texLivePaths;
};
in
myTexLive
*/
pkgs.texlive.combine {
inherit(pkgs.texlive)
scheme-medium collection-langcyrillic
cm-super cm-unicode xcolor pgf beamer moderncv tipa disser urlbst
moderntimeline texinfo metafont multibib collection-fontutils
epstopdf epspdfconversion epspdf algorithm2e relsize type1cm logreq
ucs todonotes xargs forloop pbox varwidth bigfoot environ trimspaces
forest arydshln pgfopts elocalloc libertine mweights fontaxes
totpages comment soul multirow threeparttable lastpage preprint
mnsymbol paralist animate media9 ocgx2 breakcites biblatex bibtex
xstring wrapfig ifoddpage inlinedef
;
}