18 lines
231 B
Nix
18 lines
231 B
Nix
|
{ pkgs, ... }:
|
||
|
pkgs.texlive.combine {
|
||
|
inherit (pkgs.texlive) scheme-medium
|
||
|
latexmk
|
||
|
amsmath
|
||
|
cancel
|
||
|
hyphenat
|
||
|
datetime2
|
||
|
makecell
|
||
|
tikzmark
|
||
|
tcolorbox
|
||
|
environ
|
||
|
tikzfill
|
||
|
pdfcol
|
||
|
llncs
|
||
|
;
|
||
|
}
|