diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2020-03-25 17:19:46 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2020-03-25 17:20:22 +0100 |
commit | 426d2a5745f5a6cfd2f88257af5654dd526c8bd9 (patch) | |
tree | fd95da3a6380de345f6f4e517ff717cad0e02592 | |
parent | 61aaf3487695ec6bb69bc50e5e74fcf2051a4246 (diff) |
Inital on 2020. Makefile created and preamble update
The LaTeX font encoding is updated to *T1* *fontenc* and *lmodern*
font (which supports T1). Improvements with T1 compared to the
standard OT1 is that glyphs for e.g. Swedish characters are "actual"
instead of ASCII ones with accents.
-rw-r--r-- | 2020/Makefile | 18 | ||||
-rw-r--r-- | preamble/preamble.tex | 2 |
2 files changed, 20 insertions, 0 deletions
diff --git a/2020/Makefile b/2020/Makefile new file mode 100644 index 0000000..0c8ebc8 --- /dev/null +++ b/2020/Makefile @@ -0,0 +1,18 @@ +# Makefile for minutes + +MINUTES := $(basename $(shell ls *.tex 2> /dev/null)) + +common-makefile = ../resources/Makefile-common + +help: + @make -s -f $(common-makefile) help SEND_FILES="$(MINUTES)" + +all: $(MINUTES) + +%: + make -f $(common-makefile) compile FILE=$* + +send: + make -f $(common-makefile) send SEND_FILES="$(MINUTES)" +clean: + make -f $(common-makefile) clean diff --git a/preamble/preamble.tex b/preamble/preamble.tex index 5459131..7952529 100644 --- a/preamble/preamble.tex +++ b/preamble/preamble.tex @@ -2,6 +2,8 @@ \usepackage{a4wide} \usepackage[british, english, swedish]{babel} \usepackage[utf8]{inputenc} +\usepackage[T1]{fontenc} +\usepackage{lmodern} \usepackage{fancyhdr} \usepackage[usenames, dvipsnames]{color} \usepackage{helvet} |