blob: 66a61ee37eb7bd946696b0714f59f36ffe4044aa (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
\documentclass[10pt,twoside,draft]{memoir}
\usepackage{salitter}
\usletterlayout
\usepackage{mwe}
\usepackage{amsmath}
\usepackage{stix}
\usepackage{xfrac}
\usepackage{bbold}
\usepackage{csquotes}
\usepackage[normalem]{ulem}
\usepackage{enumitem}
% fonts
\newpxfont
\newcommand{\tocline}{
\addtocontents{toc}{\protect\mbox{}\protect\hrulefill\par}}
\setlength\cftbeforepartskip{1.1em}
\setlength\cftbeforechapterskip{0.5em}
\renewcommand{\printpartname}{}
\renewcommand{\parttitlefont}{\normalfont\Huge\scshape}
% \usepackage{cabin}
% \newfontfamily{\specialheadersfont}{Cabin}
\newcommand{\speech}[1]{
\textquote{\emph{#1}}}
\newcommand{\said}[1]{ % oops
\speech{#1}}
\newcommand{\essaytitle}[1]{\uline{#1}}
\newcommand{\gap}{\plainbreak{2}}
\newcommand{\inlineaside}[1]{\textit{(#1)}}
\newcommand{\x}{$x$}
\newcommand{\y}{$y$}
\newcommand{\redact}[1]{\xout{#1}}
\newcommand{\greater}{>}
\newcommand{\less}{<}
% TODO because of something tricky ill need to debug later
\newcommand{\bimg}[1]{(img #1)}
% --- typesetting aids for some subtle syntax of flynt
\newcommand{\formulation}[1]{'\textit{#1}'}
\newcommand{\triquote}[1]{'''#1'''}
% TODO these should be considered placeholders basically
\newcommand{\name}[1]{\textbf{#1}}
% "linguistic expression"
\newcommand{\lexpression}[1]{"\emph{#1}"}
\newcommand{\expression}[1]{\lexpression{#1}}
\newenvironment{sysrules}{
\begin{hangparas}{3em}{1}
}{
\end{hangparas}
}
\newcommand{\postulate}[1]{
\emph{Postulate #1}.}
\newcommand{\dreamdate}[1]{
\plainbreak{1} \uline{#1}\\ }
\newcommand{\dreamdatecomment}[2]{
\plainbreak{1} \uline{#1} --- \textit{#2}\\ }
\newcommand{\cubeframe}{
\includegraphics[width=1em]{img/cubeframe}}
\newcommand{\cubeup}{
\includegraphics[width=1em]{img/cubeup}}
\newcommand{\cubedown}{
\includegraphics[width=1em]{img/cubedown}}
\begin{document}
\frontmatter
\graphicspath{{img/}}
\pagestyle{ruled}
\chapterstyle{tandh}
\openany
\renewcommand*{\cftpartfont}{\bfseries\scshape}
\renewcommand*{\cftchapterfont}{\normalfont}
\renewcommand*{\cftsectionfont}{\itshape}
% \setlength\beforechapskip{10pt}
\renewcommand*{\chapterheadstart}{\vskip 1pt}
\setlist{itemsep=3pt}
\setlist{parsep=0pt}
\setlist{topsep=3pt}
\setlist{leftmargin=1cm}
% Title
\thispagestyle{empty}
{
\centering\sffamily
\plainbreak{3}
{ \Large
Blueprint for a Higher Civilization \par}
\plainbreak{3}
{ \large Henry Flynt \par}
}
\clearpage
\newcommand{\photopage}[3]{
\begin{figure}[!hp]
\centering
\includegraphics[width=4in]{#1}
\caption{#2 (photo by #3)}
\end{figure}}
\photopage{img/creep}{Henry Flynt presents "Creep" lecture in Adam Hovre upper common room, Harvard University, May 15, 1962}{Tony Conrad}
\input{essays/introduction.tex}
\clearpage
\tableofcontents*
\clearpage
\mainmatter
% \input{extra/general_acognitive_culture.tex}
% \input{extra/philosophy_of_concept_art.tex}
% \input{extra/structure_art_pure_mathematics.tex}
\input{anarchic/collectivafter.tex}
\end{document}
|