summaryrefslogtreecommitdiff
path: root/shenvs/tex.nix
blob: 6ca436dc608477d279adf62fb2de0cc91279f662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pkgs: {
  paths = with pkgs; [
    biber
    (texlive.combine {
      inherit (texlive)
        scheme-medium
        biblatex
        biblatex-ieee
        cleveref
        csquotes
        enumitem
        IEEEtran
        titlesec
        titling;
    })
  ];
}