diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2021-02-22 17:08:32 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2021-02-22 17:08:32 +0100 |
commit | 1cf85dcc67abbd68ff2561ec8e836f765e5b7b00 (patch) | |
tree | 7d643c7a9aa8874894b11d97052fb79de4f7969d /2021 | |
parent | 7051c52df4f4beea1780a773775f2d225689dc78 (diff) |
Minutes Jan 25, 2021, Initial abstract provided
Abstract provided.
Also Makefile for 2021 and accronymes uppdated.
Diffstat (limited to '2021')
-rw-r--r-- | 2021/2021-01-25-board.tex | 28 | ||||
-rw-r--r-- | 2021/Makefile | 19 |
2 files changed, 47 insertions, 0 deletions
diff --git a/2021/2021-01-25-board.tex b/2021/2021-01-25-board.tex new file mode 100644 index 0000000..aa97acd --- /dev/null +++ b/2021/2021-01-25-board.tex @@ -0,0 +1,28 @@ +\input{../preamble/preamble} +\newcommand \meetingtype {styrelsemöte} +\newcommand \meetingdate {25 jan 2021} +\newcommand \meetingplace {Språkbanken, Göteborg, och via video} +\rhead{\footnotesize \meetingdate} + +\begin{document} +\selectlanguage{swedish} +\section*{Protokoll, \meetingtype \\ \meetingdate} + +\newlength\tempOne% +\settowidth\tempOne{Tid och plats:\quad}% +\newlength\tempTwo% +\setlength\tempTwo{\linewidth}% +\addtolength{\tempTwo}{-\tempOne}% + +\parbox[t]{\tempOne}{% + Tid och plats: +}% +\parbox[t]{\tempTwo}{\meetingdate, \meetingplace}\mypar + +\begin{abstract} +Årets första möte. Rapportering från höstens aktiviteter och +utvärdering av dem. Utskick diskuterades och dessutom planerades många +av årets aktiviteter skissartat. +\end{abstract} + +\end{document} diff --git a/2021/Makefile b/2021/Makefile new file mode 100644 index 0000000..26f6bd1 --- /dev/null +++ b/2021/Makefile @@ -0,0 +1,19 @@ +# Makefile for minutes + +COMPLETES := $(subst .sed.gpg,-complete, $(wildcard *.sed.gpg)) +MINUTES := $(basename $(shell ls *.tex 2> /dev/null | grep -v complete)) \ + +common-makefile = ../resources/Makefile-common + +help: + @make -s -f $(common-makefile) help SEND_FILES="$(MINUTES) $(COMPLETES)" + +all: $(MINUTES) $(COMPLETES) + +%: + make -f $(common-makefile) compile FILE=$* + +send: + make -f $(common-makefile) send SEND_FILES="$(MINUTES)" +clean: + make -f $(common-makefile) clean |