diff options
author | Camil Staps | 2016-10-04 12:09:39 +0200 |
---|---|---|
committer | Camil Staps | 2016-10-04 12:09:39 +0200 |
commit | 6b38a63a80ac931d94a43aa2fbfa5eaee38ec8e5 (patch) | |
tree | 1402d0ffeafade627ec29e729aaa19b78bf46f19 | |
parent | Minor fixes Benton (diff) |
Start Evans-Green, text 1
-rw-r--r-- | evans-green-handout.tex | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/evans-green-handout.tex b/evans-green-handout.tex new file mode 100644 index 0000000..5640bc6 --- /dev/null +++ b/evans-green-handout.tex @@ -0,0 +1,47 @@ +\documentclass[9pt,twocolumn,a4paper]{extarticle} + +\usepackage[top=2cm]{geometry} +\usepackage[british]{babel} +\usepackage{stfloats} + +\usepackage{handouts} + +\usepackage[hidelinks]{hyperref} +\usepackage{tikz} +\usepackage[font=small]{caption} + +\title{\Large Handout of selected passages from ``Cognitive Linguistics: an Introduction''\footnote{V. Evans and M. Green (2006).}} +\author{Camil Staps} + +\begin{document} + +\maketitle + +\summary{ + \subsection*{Grammatical functions and transitivity} + The prototypical action of a transitive verb is an energy transfer from the Agent to the Patient\pagenr{601}. + The prototypical action chain can be depicted as in \autoref{fig:action-chain}. + Depending on the sentence, different components may be highlighted, + but in any sentence the subject (be it Agent, Instrument or Patient) + is the closest to the energy source out of the participants profiled\pagenr{603}. + + \begin{figure}[h] + \centering + \footnotesize + \begin{tikzpicture}[every node/.style={draw,minimum width=1.6em},node distance=6em,->] + \node[circle,label=below:Agent] (A) {}; + \node[circle,right of=A,label=below:Instrument] (I) {}; + \node[circle,right of=I,label=below:Patient] (P) {}; + + \draw (A) -- (I); + \draw (I) -- (P); + \end{tikzpicture} + \caption{Prototypical action chain\pagenr{603}\label{fig:action-chain}} + \end{figure} + + Different semantic roles can be categorised according to a thematic hierarchy (Fillmore 1968). + How many roles there are, what labels they should be given, + and if they should be categorised or seen as on a prototypical scale, remain points of debate. +} + +\end{document} |