Compare commits
4 commits
96bd340006
...
112ea9840a
Author | SHA1 | Date | |
---|---|---|---|
112ea9840a | |||
d32335bae7 | |||
509fdd77f6 | |||
c9453e8a68 |
4 changed files with 5 additions and 6 deletions
|
@ -25,7 +25,7 @@ nix run git+https://git.elnu.com/ElnuDev/pdf-annotator -- "The header goes here.
|
|||
|
||||
### Usage without Nix
|
||||
|
||||
If you have the misfortune of not having [Nix](https://nixos.org/) available, ensure that the `pdflatex` command is available, which should be installed alongside `texlive-full`.
|
||||
If you have the misfortune of not having [Nix](https://nixos.org/) available, ensure that the `pdflatex` command is available, which should be installed alongside `texlive-full` (the small scheme should be sufficient).
|
||||
|
||||
Clone the repository:
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
in {
|
||||
packages.${system} = {
|
||||
pdf-annotator = let
|
||||
texlive = pkgs.texlive.combined.scheme-full;
|
||||
texlive = pkgs.texlive.combined.scheme-small;
|
||||
script = "run.sh";
|
||||
tex = "numbered.tex";
|
||||
in pkgs.stdenv.mkDerivation rec {
|
||||
|
@ -23,6 +23,7 @@
|
|||
postPatch = ''
|
||||
substituteInPlace run.sh \
|
||||
--replace pdflatex ${texlive}/bin/pdflatex \
|
||||
--replace latexmk ${texlive}/bin/latexmk \
|
||||
--replace ${tex} $out/share/${tex}
|
||||
'';
|
||||
installPhase = ''
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
\documentclass[letterpaper, 12pt]{article}
|
||||
\usepackage{pdfpages}
|
||||
\usepackage{changepage}
|
||||
\usepackage{fancyhdr}
|
||||
|
||||
\setlength\topmargin{-0.675in}
|
||||
|
@ -9,8 +8,6 @@
|
|||
\setlength\oddsidemargin{-0.25in}
|
||||
\setlength\evensidemargin{-0.25in}
|
||||
|
||||
\strictpagecheck
|
||||
|
||||
\thispagestyle{empty}
|
||||
\fancypagestyle{mystyle}{
|
||||
% hide any background elements in source PDF with \colorbox{white} %
|
||||
|
|
1
run.sh
1
run.sh
|
@ -1,2 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
pdflatex "\newcommand{\vartitle}{${1}}\newcommand{\varinput}{${2}}\input{numbered.tex}" && mv numbered.pdf ${3} &> /dev/null
|
||||
latexmk -c &> /dev/null
|
Loading…
Add table
Reference in a new issue