This commit is contained in:
2026-07-23 18:13:11 +09:00
parent 2c996ad3f1
commit 101067a32e
11 changed files with 133 additions and 10 deletions
+8 -1
View File
@@ -1,2 +1,9 @@
PANDOC:=pandoc
TEX:=lualatex
OUTPUT:=./out
all: report.pdf
%.pdf: %.md
pandoc --from markdown --to pdf -o $@ $^ --pdf-engine=lualatex -N
pandoc --from markdown --to pdf -o ${OUTPUT}/$@ $^ --pdf-engine=${TEX} -N
+1 -1
View File
@@ -1,5 +1,5 @@
{
description = "Template for Pandoc Markdown";
description = "Template for Pandoc Single File Markdown";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";