From 5611a887197aee3df0db5f0bbb9905ef60059bcc Mon Sep 17 00:00:00 2001 From: Malin Freeborn <malinfreeborn@posteo.net> Date: Wed, 6 Mar 2024 18:32:15 +0100 Subject: [PATCH] make issue qr code --- .gitignore | 1 + Makefile | 5 ++++- intro.tex | 7 +++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6ea87771..52562d67 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ old .switch-* *.fls *latexmk +qr.tex diff --git a/Makefile b/Makefile index 5b3f1d89..23ae2fcf 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,18 @@ BOOK = $(shell basename "$$(pwd)") +QR_TARGET = $(shell grep 'mailto' README.md | cut -d' ' -f2) output: $(BOOK).pdf .PHONY: clean all +qr.tex: README.md + @echo '\qrcode[height=.2\\textwidth]{$(QR_TARGET)}' > qr.tex .switch-gls: @touch -r Makefile .switch-gls config/bind.sty: @git submodule update --init -svg-inkscape: | config/bind.sty .switch-gls +svg-inkscape: | config/bind.sty .switch-gls qr.tex @pdflatex -shell-escape -jobname $(BOOK) main.tex $(BOOK).pdf: svg-inkscape $(wildcard *.tex) $(wildcard config/*.sty) @pdflatex -jobname $(BOOK) main.tex diff --git a/intro.tex b/intro.tex index 17a3c6d3..d59d0274 100644 --- a/intro.tex +++ b/intro.tex @@ -75,4 +75,11 @@ BIND is open source, and available under the {\tt GNU General Public License 3} You have full access to all the \href{https://gitlab.com/bindrpg/core}{source files}, including art, and the right to change anything and share those changes with others. +\begin{center} + \input{qr.tex} + Found an issue? + Send it here. + \index{Fixing Problems} +\end{center} + \end{multicols} -- GitLab