From 2ec17591d0eefeb7766d48024b2711d2c315596f Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Fri, 23 Sep 2016 15:29:56 +0200 Subject: [PATCH] add week 5 --- week5/Makefile | 12 ++++++++++++ week5/w5.tex | 22 ++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 week5/Makefile create mode 100644 week5/w5.tex diff --git a/week5/Makefile b/week5/Makefile new file mode 100644 index 0000000..2c21139 --- /dev/null +++ b/week5/Makefile @@ -0,0 +1,12 @@ +DOCUMENTS:=w5 +PDFLATEXFLAGS:=-halt-on-error +PDFLATEX:=pdflatex $(PDFLATEXFLAGS) + +all: $(addsuffix .pdf,$(DOCUMENTS)) + +%.pdf: %.tex + $(PDFLATEX) $< + $(PDFLATEX) $< + +clean: + $(RM) -v $(addprefix $(DOCUMENTS),.pdf .log .aux) diff --git a/week5/w5.tex b/week5/w5.tex new file mode 100644 index 0000000..21a7c54 --- /dev/null +++ b/week5/w5.tex @@ -0,0 +1,22 @@ +\documentclass[a4paper]{article} + +\usepackage{amssymb} +\usepackage{booktabs} +\usepackage{geometry} +\usepackage{tipa} + +\title{Exercise week 5} +\author{Mart Lubbers} +\date{\today} + +\begin{document} +\maketitle +\subsection*{Exercise 9.1} +All the errors are frequent words without a lot of meaning and therefore are +reduced quite often. + +\subsection*{Exercise Chapter 8} +One should add reduction rules on the word to phone level or supply alternative +pronunciations taking the reduction into account. + +\end{document} -- 2.20.1