summary refs log tree commit diff homepage
path: root/shell.nix
blob: 935766e4659829c095bbf85587cf6eae9b26b596 (plain) (blame)
1
2
3
4
5
6
7
8
9
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 times tocloft varwidth vntex xcolor;
  }) ];
}