diff options
author | Camil Staps | 2016-09-20 23:52:42 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-20 23:52:42 +0200 |
commit | 137c84c7af572e8bf4a4bbfd080182ed9f083267 (patch) | |
tree | f11208e6a0c045ed65445b97e163bdf596828b8b | |
parent | Initial commit (diff) |
Start Benton
-rw-r--r-- | .gitignore | 29 | ||||
-rw-r--r-- | Makefile | 15 | ||||
-rw-r--r-- | benton-handout.tex | 76 | ||||
-rw-r--r-- | handouts.sty | 25 |
4 files changed, 145 insertions, 0 deletions
@@ -1,2 +1,31 @@ papers/ organisation/ + +*.aux +*.glo +*.idx +*.fdb_latexmk +*.fls +*.log +*.toc +*.ist +*.acn +*.acr +*.alg +*.bbl +*.blg +*.dvi +*.glg +*.gls +*.ilg +*.ind +*.lof +*.lot +*.maf +*.mtc +*.mtc1 +*.out +*.pdf +*.swp +*.synctex.gz +_minted-*/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0928664 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +TEX=pdflatex +TEXFLAGS=-file-line-error -halt-on-error + +TARGET=$(subst .tex,.pdf,$(wildcard *.tex)) + +.PHONY: all clean + +all: $(TARGET) + +%.pdf: %.tex + $(TEX) $(TEXFLAGS) $< &&\ + $(TEX) $(TEXFLAGS) $< + +clean: + latexmk -C diff --git a/benton-handout.tex b/benton-handout.tex new file mode 100644 index 0000000..effec33 --- /dev/null +++ b/benton-handout.tex @@ -0,0 +1,76 @@ +\documentclass[a4paper]{article} + +\usepackage{geometry} +\usepackage[british]{babel} + +\usepackage{handouts} + +\usepackage[hidelinks]{hyperref} +\usepackage{tikz} + +\newcommand{\situationtransition}[7]{% + \begin{tikzpicture}[node distance=4em] + \node[ label={below:$x_{-3}$},label={above:#1}] (xm3) {}; + \node[right of=xm3,label={below:$x_{-2}$},label={above:#2}] (xm2) {}; + \node[right of=xm2,label={below:$x_{-1}$},label={above:#3}] (xm1) {}; + \node[right of=xm1,label={below:$x_0$}, label={above:#4}, + circle,draw,fill=black,inner sep=2pt] (x0) {}; + \node[right of=x0, label={below:$x_1$}, label={above:#5}] (x1) {}; + \node[right of=x1, label={below:$x_2$}, label={above:#6}] (x2) {}; + \node[right of=x2, label={below:$x_3$}, label={above:#7}] (x3) {}; + + \node[left of=xm3, label={left:$\dots$}] (start) {}; + \node[right of=x3, label={right:$\dots$}] (end) {}; + + \path[draw,<->] (start) -- (end); + \end{tikzpicture} +} + +\title{\Large Handout of ``Aspect and the Biblical Hebrew Niphal and Hitpael''\footnote{Richard Charles Benton, Jr. 2009. University of Wisonsin-Madison.}} +\author{Camil Staps} + +\begin{document} + +\maketitle + +\summary{ + The problem with the Niphal and Hitpael stems is both + (a) \term{internal overlap}, + that each stem covers more than one functional area (passive, middle and reflexive), and + (b) \term{external overlap}, + that the functions of the two stems overlap with each other\pagenr{102}. +} + +\summary{ + Benton takes from Keenan (1985) the idea that when a language has multiple passives, + they are distinguished by \term{aspect}\pagenr{102}. + \criticism{ + he then takes from later linguists new views on aspect\pagenr{104--5}, + and applies Keenan's theory using those ideas about aspect. + It is unclear if Keenan's theory applies to those new ideas. + } + Linguists distinguish different kinds of aspect: + \term{viewpoint aspect}, + where a full or partial view of a situation is presented; + \term{situation aspect}, + which presents features of a situation. + Different kinds of situation aspect can be categorised by the features + static--dynamic, durative--instantaneous and telic--atelic. + Based on Pustejovsky, different types of events can be depicted in diagrams\pagenr{108--9} + (see \autoref{fig:situation-transitions}). + + \begin{figure}[b] + \centering + \situationtransition{$\dots$}{$\lnot$built}{$\lnot$built}{built}{built}{built}{$\dots$} + + \vspace*{1em} + \situationtransition{}{}{}{reached}{reached}{reached}{$\dots$} + + \vspace*{1em} + \situationtransition{}{}{}{tapped}{}{}{} + + \caption{Different types of events: accomplishment, achievement and semelfactive.\label{fig:situation-transitions}} + \end{figure} +} + +\end{document} diff --git a/handouts.sty b/handouts.sty new file mode 100644 index 0000000..8178b18 --- /dev/null +++ b/handouts.sty @@ -0,0 +1,25 @@ +\newif\ifshowpagenrs +\newif\ifshowsummary +\newif\ifshowcriticism + +\showpagenrstrue +\showsummarytrue +\showcriticismtrue + +\newcommand{\criticismStart}{\emph{Criticism:} } +\newcommand{\criticismStyle}{\color{RedOrange}} + +\newcommand{\termStyle}{\it} + +\PassOptionsToPackage{dvipsnames}{xcolor} +\RequirePackage{xcolor} + +\newcommand{\pagenr}[1]{% + \ifshowpagenrs\textcolor{gray}{~(p. #1)}\fi} +\newcommand{\summary}[1]{% + \ifshowsummary #1\fi} +\newcommand{\criticism}[1]{% + \ifshowpagenrs + \begingroup\criticismStyle\criticismStart{}#1\endgroup\fi} +\newcommand{\term}[1]{% + \begingroup\termStyle #1\endgroup} |