From: Mart Lubbers Date: Mon, 19 Sep 2016 08:39:24 +0000 (+0200) Subject: update w4 assignment X-Git-Url: https://git.martlubbers.net/?a=commitdiff_plain;h=24e91d57c767a4e73e3d66aac7a181cc591a4eaf;p=itlast1617.git update w4 assignment --- diff --git a/week4/Makefile b/week4/Makefile new file mode 100644 index 0000000..157d526 --- /dev/null +++ b/week4/Makefile @@ -0,0 +1,12 @@ +DOCUMENTS:=w4 +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/week4/w4.tex b/week4/w4.tex new file mode 100644 index 0000000..f963b0f --- /dev/null +++ b/week4/w4.tex @@ -0,0 +1,43 @@ +\documentclass[a4paper]{article} + +\usepackage{amssymb} +\usepackage{booktabs} +\usepackage{geometry} +\usepackage{tipa} + +\title{Exercise week 4} +\author{Mart Lubbers} +\date{\today} + +\begin{document} +\maketitle +\subsection*{Exercise 7.2} +See Table~\ref{t1} +\begin{table} + \centering + \begin{tabular}{llccccc} + \toprule + & IPA & \multicolumn{5}{c}{ARPA}\\ + \midrule + a & \textipa{r3d} & \texttt{r} & \texttt{eh} & \texttt{d}\\ + b & \textipa{blu} & \texttt{b} & \texttt{l} & \texttt{uw}\\ + c & \textipa{grin} & \texttt{g} & \texttt{r} & \texttt{iy} & \texttt{n}\\ + d & \textipa{"j3loU} & \texttt{y} & \texttt{eh} & \texttt{l} & \texttt{ow}\\ + e & \textipa{bl\ae{}k} & \texttt{b} & \texttt{l} & \texttt{ae} & \texttt{k}\\ + f & \textipa{waIt} & \texttt{w} & \texttt{aa} & \texttt{ih} & \texttt{t}\\ + g & \textipa{"OrIndZ} & \texttt{ao} & \texttt{r} & \texttt{ih} & \texttt{n} & \texttt{jh}\\ + h & \textipa{"p\textrhookrevepsilon{}pl""} & \texttt{p} & \texttt{er} & \texttt{p} & \texttt{el}\\ + i & \textipa{pjus} & \texttt{p} & \texttt{y} & \texttt{uw} & \texttt{s}\\ + j & \textipa{toUp} & \texttt{t} & \texttt{ow} & \texttt{p}\\ + \bottomrule + \end{tabular} + \caption{IPA ARPA mapping\label{t1}} +\end{table} + +\subsection*{Exercise Chapter 8} +The bars can be seen as pauses. Text between braces can be omitted, as can the +copyright statement. Numbers have to be treated as years and be pronounced in +such a way. Detection of proper names can be difficult since there is a lot of +capitalization. Real proper names are in full caps. + +\end{document}