Files
report-temp/nix/latex.nix
T
2026-05-28 00:47:46 +09:00

63 lines
719 B
Nix

{ pkgs, ... }:
pkgs.texliveSmall.withPackages (ps: with ps; [
# Bibliography
biber
biblatex
bibtex
# Japanese Support
ascmac
babel
babel-japanese
bxjscls
collection-langjapanese
luatexja
zxjatype
# Fonts
fontspec
haranoaji
inconsolata
latex-fonts
libertine
luainputenc
mathfont
newtx
noto
type1cm
zxjafont
# Math
amsfonts
amsmath
lualatex-math
mathtools
unicode-math
# Graphics
caption
circuitikz
graphics
here
pgf
wrapfig
# Tools
blindtext
cleveref
enumitem
etoolbox
float
footmisc
framed
hyperref
latexmk
listings
multirow
subfiles
tabularray
xcolor
xpatch
xstring
] ++ [ ps.import pkgs.my-latex-pkgs ])