summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-04-08 21:09:38 -0600
committerAlejandro Soto <alejandro@34project.org>2022-04-08 21:09:38 -0600
commit844c8bacf5dd35cd56ed83846d94e31ca989db42 (patch)
treef3968b0216ce1068d0dce75f8e142b36ee60f7c0
parent64cb93cd77f58a5ea95612c0e9da69f237f9cb75 (diff)
shenvs/tex: add biblatex
-rw-r--r--shenvs/tex.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/shenvs/tex.nix b/shenvs/tex.nix
index 4bd4b52..2ba0670 100644
--- a/shenvs/tex.nix
+++ b/shenvs/tex.nix
@@ -1,7 +1,13 @@
pkgs: {
paths = with pkgs; [
+ biber
(texlive.combine {
- inherit (texlive) scheme-medium csquotes enumitem;
+ inherit (texlive)
+ scheme-medium
+ biblatex
+ biblatex-ieee
+ csquotes
+ enumitem;
})
];
}