mirror of
https://github.com/kenryuS/report-temp.git
synced 2026-06-15 00:36:13 +09:00
63 lines
719 B
Nix
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 ])
|