blob: c096b9cb562b777f82b8db3af5991f6cf2c908b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
with import <nixpkgs> { };
mkShell {
packages = [ (texlive.combine {
inherit (texlive) latexmk scheme-basic
algorithms algorithmicx amsmath babel-vietnamese booktabs biblatex
caption cases cite enumitem fancyhdr float glossaries hyperref ieeetran
pdflscape pdfpages pgf psnfss rsfs setspace siunitx times tocloft
varwidth vntex xcolor;
}) ];
}
|