From be17a0c278010de93447aecb94eb8f66a92140a0 Mon Sep 17 00:00:00 2001 From: Noah Diewald Date: Thu, 23 Feb 2023 10:18:38 -0500 Subject: [PATCH] a diagram of the theory for the dissertation --- dissertation-arch.tex | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 dissertation-arch.tex diff --git a/dissertation-arch.tex b/dissertation-arch.tex new file mode 100644 index 0000000..5c41761 --- /dev/null +++ b/dissertation-arch.tex @@ -0,0 +1,17 @@ +\begin{tikzpicture} +\node (fsm) at (0,0.5) {Form-Sign Mapping}; +\node[draw] (fp) at (-5,0) {Form Paradigm}; +\node[draw] (sp) at (5,0) {Sign Paradigm}; +\node (mr) at (2,3) {Meaning Relation}; +\node[draw,ellipse] (lsk) at (0,5) {Lexical Semantic Knowledge}; +\node (ffm) at (-5,-2.3) {Form-Form Mapping}; + +\draw[->] (fp) to (sp); +\draw[->] (lsk) to (fsm); +\draw[->] (-5.1,-0.3) .. controls (-6,-0.5) and (-6,-2) .. (ffm.north) .. controls (-4,-2) and (-4,-0.5) .. (fp.south); +\end{tikzpicture} + +%%% Local Variables: +%%% mode: latex +%%% TeX-master: "../main" +%%% End: