Compare commits
No commits in common. "master" and "e976b6ff63f6c058268993af502e2efdd1714d6f" have entirely different histories.
master
...
e976b6ff63
|
|
@ -1,4 +0,0 @@
|
||||||
;;; Directory Local Variables
|
|
||||||
;;; For more information see (info "(emacs) Directory Variables")
|
|
||||||
|
|
||||||
((org-mode . ((eval . (load-file "local.el")))))
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
||||||
name: release
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
runs-on: bylaw-builder
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Setup go
|
|
||||||
uses: https://github.com/actions/setup-go@v4
|
|
||||||
with:
|
|
||||||
go-version: '>=1.20.1'
|
|
||||||
- name: Build
|
|
||||||
run: make
|
|
||||||
- name: Release
|
|
||||||
id: use-go-action
|
|
||||||
uses: https://gitea.com/actions/release-action@main
|
|
||||||
with:
|
|
||||||
files: |-
|
|
||||||
bylaws.pdf
|
|
||||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
|
||||||
3
Makefile
3
Makefile
|
|
@ -1,3 +0,0 @@
|
||||||
all: pdf clean
|
|
||||||
pdf: ; emacs bylaws.org --batch -l local.el -f org-latex-export-to-pdf
|
|
||||||
clean: ; rm bylaws.tex
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
#+TITLE: Bylaws
|
|
||||||
|
|
||||||
* 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
|
|
||||||
#+end_src
|
|
||||||
30
bylaws.cls
30
bylaws.cls
|
|
@ -1,30 +0,0 @@
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
|
||||||
\ProvidesClass{bylaws}[]
|
|
||||||
|
|
||||||
\usepackage{titlepic}
|
|
||||||
\titlepic{\includegraphics[width=250]{Coat-of-Arms-Color.png}}
|
|
||||||
|
|
||||||
\LoadClass[12pt]{report}
|
|
||||||
\usepackage{geometry}[margin=1in]
|
|
||||||
|
|
||||||
\renewcommand{\itemize}{\enumerate}
|
|
||||||
|
|
||||||
\renewcommand{\thechapter}{Article \Roman{chapter}}
|
|
||||||
\renewcommand{\thesection}{\thechapter\ §\ \arabic{section}}
|
|
||||||
\renewcommand{\labelenumi}{(\alph{enumi})}
|
|
||||||
\renewcommand{\labelenumii}{(\arabic{enumii})}
|
|
||||||
\renewcommand{\labelenumiii}{(\Alph{enumiii})}
|
|
||||||
\renewcommand{\labelenumiv}{(\roman{enumiv})}
|
|
||||||
\renewcommand{\theenumi}{\thesection\labelenumi}
|
|
||||||
\renewcommand{\theenumii}{\labelenumii}
|
|
||||||
\renewcommand{\theenumiii}{\labelenumiii}
|
|
||||||
\renewcommand{\theenumiv}{\labelenumiv}
|
|
||||||
|
|
||||||
\usepackage{titletoc}
|
|
||||||
\renewcommand{\chaptername}{}
|
|
||||||
\renewcommand\numberline[1]{}
|
|
||||||
\usepackage{titlesec}
|
|
||||||
\titleformat{\chapter}[display]{\Huge\bfseries}
|
|
||||||
{Article \Roman{chapter}}{8pt}{\Huge\bfseries}
|
|
||||||
\titleformat{\section}[block]{\Large\bfseries}{§
|
|
||||||
\arabic{section}}{8pt}{\Large\bfseries}
|
|
||||||
2249
bylaws.org
2249
bylaws.org
File diff suppressed because it is too large
Load Diff
25
local.el
25
local.el
|
|
@ -1,25 +0,0 @@
|
||||||
(require 'ox-latex)
|
|
||||||
(setq-local
|
|
||||||
org-latex-classes
|
|
||||||
'(("bylaws"
|
|
||||||
"\\documentclass{bylaws}"
|
|
||||||
("\\chapter{%s}" . "\\chapter*{%s}")
|
|
||||||
("\\section{%s}" . "\\section*{%s}"))))
|
|
||||||
|
|
||||||
(setq 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")
|
|
||||||
(lambda nil
|
|
||||||
(interactive)
|
|
||||||
(save-match-data
|
|
||||||
(let ((string (buffer-string))
|
|
||||||
(pos 0)
|
|
||||||
(tag 0))
|
|
||||||
(while (string-match "<<tag:\\([0-9]+\\)>>" string pos)
|
|
||||||
(setq tag (max tag
|
|
||||||
(string-to-number (match-string 1 string)))
|
|
||||||
pos (match-end 0)))
|
|
||||||
(insert "<<tag:" (number-to-string (1+ tag)) ">>")))))
|
|
||||||
Loading…
Reference in New Issue