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