TexLive: Difference between revisions
imported>4aep m add helpful and informative article on using LaTeX with nix flakes |
imported>2r latex packages needed for orgmode |
||
Line 55: | Line 55: | ||
}) | }) | ||
</code> | </code> | ||
For a minimal set of packages needed for Emacs Orgmode, as described in org-latex-default-packages-alist variable, install these packages: | |||
<pre> | |||
{ config, pkgs, ... }: | |||
let | |||
tex = (pkgs.texlive.combine { | |||
inherit (pkgs.texlive) scheme-minimal wrapfig luatex | |||
latex tex4ht | |||
ulem amsmath capt-of hyperref; | |||
# from org-latex-default-packages-alist variable | |||
}); | |||
in | |||
{ # home-manager | |||
home.packages = with pkgs; [ | |||
tex | |||
]; | |||
} | |||
</pre> | |||
== Troubleshooting == | == Troubleshooting == |