Compare commits

..

1 Commits

Author SHA1 Message Date
Reily Siegel 49786e0536
Technical changes
This commit makes the following changes:
- Adds infrastructure to easily generate a PDF
- Updates the style of the document to match the Chapter Code of Regulation
- Simplifies the layout of the bylaws.org file.
2023-01-18 17:27:45 -05:00
4 changed files with 12 additions and 26 deletions

View File

@ -1,22 +0,0 @@
kind: pipeline
name: ccr
type: docker
steps:
- name: generate-pdf
image: git.axpdsp.org/parliamentarian/bylaw-builder
commands:
- "make"
- name: publish
image: plugins/gitea-release
settings:
base_url: https://git.axpdsp.org
api_key:
from_secret: api_key
files:
- bylaws.pdf
title: $DRONE_TAG
trigger:
event:
- tag

View File

@ -3,5 +3,7 @@
* Generating PDFs
A PDF can be generated using the following command:
#+begin_src bash
docker run --rm -v $PWD:/data -w /data git.axpdsp.org/parliamentarian/bylaw-builder make
guix shell -m manifest.scm -- make
#+end_src
Assuming that [[https://guix.gnu.org/][GNU Guix]] is installed, this command will handle downloading all
dependencies, generating PDF, and cleaning up temporary files.

View File

@ -6,12 +6,12 @@
("\\chapter{%s}" . "\\chapter*{%s}")
("\\section{%s}" . "\\section*{%s}"))))
(setq org-latex-hyperref-template "
(setopt org-latex-hyperref-template "
\\hypersetup{\n pdfauthor={%a},\n pdftitle={%t},\n pdfkeywords={%k},
pdfsubject={%d},\n pdfcreator={%c},\n pdflang={%L},\n colorlinks=true}\n")
(local-set-key
(kbd "C-c t")
(keymap-local-set
"C-c t"
(lambda nil
(interactive)
(save-match-data

6
manifest.scm Normal file
View File

@ -0,0 +1,6 @@
;; What follows is a "manifest" equivalent to the command line you gave.
;; You can store it in a file that you may then pass to any 'guix' command
;; that accepts a '--manifest' (or '-m') option.
(specifications->manifest
(list "emacs-next" "texlive" "make" "git"))