Compare commits

...

13 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
ryansaklad 782c08c41d Updated the Glossary 2023-01-18 13:13:14 -05:00
ryansaklad f018748bcb Changed VP and Secretary secondary housing requirements
Replacement Exec members can be used as replacements for the Vice President and/or Secretary being on secondary housing
2023-01-18 13:03:26 -05:00
ryansaklad 98ffd80cf7 Fixed Typo 2023-01-18 13:00:42 -05:00
ryansaklad ff4ade4659 Changed housing and room pick order
Changed from being entirely in the bylaws to allowing the Brotherhood/Chapter Council to determine large parts of the order
2023-01-18 13:00:07 -05:00
ryansaklad b10d675a9e Added automaticly accepted resignations 2023-01-18 12:57:48 -05:00
ryansaklad 7350e7bfe0 Removed standard fines and erroneus reference to Article V 2023-01-18 12:57:06 -05:00
ryansaklad 8451c5d98f Changed suspension of bylaws to suspending the rules 2023-01-18 12:56:05 -05:00
ryansaklad 6b57b5104a Secretary responsibility to read minutes during Chapter Council
Moved responsibility to the Secretary section and made it for the acting Secretary
2023-01-18 12:55:03 -05:00
ryansaklad aa80095b7b Added Parliamentarian's ability to make conforming changes 2023-01-18 12:52:53 -05:00
ryansaklad 3970dea08f Loosened requirements to overrule Exec 2023-01-18 12:51:37 -05:00
ryansaklad 4b54e732b3 Parietal Hours Amendment 2023-01-18 12:41:20 -05:00
ryansaklad 5ececac706
Added Housing, Meal Plan, and Membership Contracts to Appendix
Fixed formatting for contracts in Apendix

Modified-by: Reily Siegel <mail@reilysiegel.com>
2022-12-28 07:42:50 -05:00
7 changed files with 998 additions and 927 deletions

View File

@ -1,4 +1,4 @@
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")
((org-mode . ((org-list-allow-alphabetical . t))))
((org-mode . ((eval . (load-file "local.el")))))

3
Makefile Normal file
View File

@ -0,0 +1,3 @@
all: pdf clean
pdf: ; emacs bylaws.org --batch -l local.el -f org-latex-export-to-pdf
clean: ; rm bylaws.tex

9
README.org Normal file
View File

@ -0,0 +1,9 @@
#+TITLE: Bylaws
* Generating PDFs
A PDF can be generated using the following command:
#+begin_src bash
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.

30
bylaws.cls Normal file
View File

@ -0,0 +1,30 @@
\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}

1850
bylaws.org

File diff suppressed because it is too large Load Diff

25
local.el Normal file
View File

@ -0,0 +1,25 @@
(require 'ox-latex)
(setq-local
org-latex-classes
'(("bylaws"
"\\documentclass{bylaws}"
("\\chapter{%s}" . "\\chapter*{%s}")
("\\section{%s}" . "\\section*{%s}"))))
(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")
(keymap-local-set
"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)) ">>")))))

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"))