-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjameson.tex
57 lines (48 loc) · 2.06 KB
/
jameson.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
\documentclass{scrartcl}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{tikz}
%Jameson, F. (1991). Postmodernism, or, The Cultural Logic of Late Capitalism. New York: Verso, p. 10
%For Jameson's similar diagram on p. 293, just edit the labels
\begin{document}
%\begin{figure}
% \centering
\begin{tikzpicture}
%middle parallelogram
\draw[thick,dash pattern=on 9pt off 5.8pt] (0,0)--(4,2); %NW
\draw[thick,dash pattern=on 9pt off 5.8pt] (4,2)--(8,0); %NE
\draw[thick,dash pattern=on 9pt off 5.8pt] (0,0)--(4,-2); %SW
\draw[thick,dash pattern=on 9pt off 5.8pt] (4,-2)--(8,0); %SE
%labels - outside
\node at (-1,-.05) {Van Gogh};
\node at (4,2.75) {MAGIC REALISM};
\node at (4,2.25) {the prehensile toe};
\node at (4,-2.25) {creases on the face};
\node at (4,-2.75) {THE REALISM OF OLD AGE};
\node at (8.75,0) {Warhol};
%manual fill for inside labels
\draw[line width=8pt, color=white] (2,1.25)--(3,1.25); %WORK
\draw[line width=8pt, color=white] (-.6,0.75)--(3,0.75); %TRANSFORMATION
\draw[line width=9pt, color=white] (1,-1)--(3,-1); %SUFFERING
\draw[line width=9pt, color=white] (5,1.23)--(6,1.23); %PLAY
\draw[line width=8pt, color=white] (5,0.75)--(7,0.75); %IDLENESS
\draw[line width=8pt, color=white] (5,-0.75)--(8,-0.75); %INDIFFERENCE
\draw[line width=8pt, color=white] (5,-1.25)--(8,-1.25); %PHOTOGRAPHY
%labels - inside
\node at (2.4,1.22) {WORK};
\node at (1.15,0.76) {TRANSFORMATION};
\node at (1.9,-1) {SUFFERING};
\node at (5.55,1.22) {PLAY};
\node at (6,0.76) {IDLENESS};
\node at (6.5,-0.75) {INDIFFERENCE};
\node at (6.55,-1.25){PHOTOGRAPHY};
%arrows - inside
\draw[<->,>=stealth,thick] (3.15,1)--(4.9,1); %top horizontal arrow
\draw[<->,>=stealth,thick] (3.15,-1)--(4.9,-1); %bottom horizontal arrow
\draw[<->,>=stealth,thick] (3.15,-0.75)--(4.9,0.75); %SW-NE
\fill[white] (4.02,0) circle (2pt); %hack to replicate crossing-over
\draw[<->,>=stealth,thick] (3.15,0.75)--(4.9,-0.75); %NW-SE
\end{tikzpicture}
% \caption{...}
%\end{figure}
\end{document}