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
|
### 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:
|
Clone the repository:
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
in {
|
in {
|
||||||
packages.${system} = {
|
packages.${system} = {
|
||||||
pdf-annotator = let
|
pdf-annotator = let
|
||||||
texlive = pkgs.texlive.combined.scheme-full;
|
texlive = pkgs.texlive.combined.scheme-small;
|
||||||
script = "run.sh";
|
script = "run.sh";
|
||||||
tex = "numbered.tex";
|
tex = "numbered.tex";
|
||||||
in pkgs.stdenv.mkDerivation rec {
|
in pkgs.stdenv.mkDerivation rec {
|
||||||
|
@ -23,6 +23,7 @@
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace run.sh \
|
substituteInPlace run.sh \
|
||||||
--replace pdflatex ${texlive}/bin/pdflatex \
|
--replace pdflatex ${texlive}/bin/pdflatex \
|
||||||
|
--replace latexmk ${texlive}/bin/latexmk \
|
||||||
--replace ${tex} $out/share/${tex}
|
--replace ${tex} $out/share/${tex}
|
||||||
'';
|
'';
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
\documentclass[letterpaper, 12pt]{article}
|
\documentclass[letterpaper, 12pt]{article}
|
||||||
\usepackage{pdfpages}
|
\usepackage{pdfpages}
|
||||||
\usepackage{changepage}
|
|
||||||
\usepackage{fancyhdr}
|
\usepackage{fancyhdr}
|
||||||
|
|
||||||
\setlength\topmargin{-0.675in}
|
\setlength\topmargin{-0.675in}
|
||||||
|
@ -9,8 +8,6 @@
|
||||||
\setlength\oddsidemargin{-0.25in}
|
\setlength\oddsidemargin{-0.25in}
|
||||||
\setlength\evensidemargin{-0.25in}
|
\setlength\evensidemargin{-0.25in}
|
||||||
|
|
||||||
\strictpagecheck
|
|
||||||
|
|
||||||
\thispagestyle{empty}
|
\thispagestyle{empty}
|
||||||
\fancypagestyle{mystyle}{
|
\fancypagestyle{mystyle}{
|
||||||
% hide any background elements in source PDF with \colorbox{white} %
|
% hide any background elements in source PDF with \colorbox{white} %
|
||||||
|
|
3
run.sh
3
run.sh
|
@ -1,2 +1,3 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
pdflatex "\newcommand{\vartitle}{${1}}\newcommand{\varinput}{${2}}\input{numbered.tex}" && mv numbered.pdf ${3} &> /dev/null
|
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