From 426d2a5745f5a6cfd2f88257af5654dd526c8bd9 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Wed, 25 Mar 2020 17:19:46 +0100 Subject: 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. --- 2020/Makefile | 18 ++++++++++++++++++ preamble/preamble.tex | 2 ++ 2 files changed, 20 insertions(+) create mode 100644 2020/Makefile 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} -- cgit v1.2.3