Skip to content

Commit 025a655

Browse files
committed
add first memo
1 parent 74a9571 commit 025a655

7 files changed

Lines changed: 84 additions & 21 deletions

File tree

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h1 class="sr-only">Columbia University Narrative Intelligence Lab</h1>
1313
<h1 class="sr-only">CUØ <small>/'kjuːnɪl/</small></h1>
1414
<!-- The logo is 2:1 -->
1515
<a href="/" class="block h-full w-36 lg:w-48">
16-
<img src="/assets/images/svg/cu-nil-logo.svg"
16+
<img src="/assets/images/svg/cunil-logo.svg"
1717
class="object-cover" alt="CUØ /'kjuːnɪl/"
1818
/>
1919
</a>

_pages/memos.html

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,3 @@
44
permalink: /memos/
55
---
66

7-
{% assign all_events = site.events | size %}
8-
{% assign events_count_text = "Showing all " | append: all_events | append: " events." %}
9-
{% include section-break.html section="Events" subsection=events_count_text %}
10-
11-
<div>
12-
{% assign events = site.events | sort: "date" | reverse %}
13-
{% include collection.html
14-
show-category-name=true
15-
projects=events
16-
%}
17-
</div>

assets/images/logo/cunil-logo.png

31.3 KB
Loading
Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
---
22
title: "Memo 1: On Study Design in Computational Humanities"
3-
author: Dennis Yi Tenen
4-
date: 2025-05-10
3+
author: "Dennis Yi Tenen"
4+
date: "May 10, 2025"
5+
documentclass: texMemo
6+
mainfont: "fbb"
7+
header-includes: |
8+
\usepackage{graphicx}
9+
\memoto{Recipient Name}
10+
\memofrom{Dennis Yi Tenen}
11+
\memosubject{Memo 1: On Study Design in Computational Humanities}
12+
\memodate{\today}
13+
\memologo{\includegraphics[width=0.3\textwidth]{cunil-logo.png}}
514
---
615

716
Reading Thad Dunning's *Natural Experiments in the Social Science* (Cambridge, 2012) I am
@@ -15,7 +24,7 @@ This approach seems particularly well-suited for computational study in the huma
1524
"the veracity of causal and statistical assumptions that are often difficult to explicate
1625
and defend — let alone validate." The natural experiment approach seeks to shift reasoning
1726
about such assumptions from the statistical modeling part of the research process, expressed
18-
mathematically, to the design process, expressed in the logic of the world observed. "With
27+
mathematically, to the design process, expressed in the logic of the world observed: "With
1928
natural experiments, it is the research design, rather than the statistical modeling, that
2029
compels conviction."
2130

@@ -44,10 +53,12 @@ about the process that gives rise to observed data (106)." For me, here finally
4453
subtle but crucial point of his argument: all of the above remains true not just for natural
4554
experiments, but for strong research study design in computational humanities and social
4655
sciences more generally. Christopher H. Achen makes a similar point in his wonderful paper on
47-
"Garbage-Can Regressions," arguing for a more a "sophisticated simplicity" in study design and
48-
a more "creative engagement with the data."
56+
"Garbage-Can Regressions," arguing for "sophisticated simplicity" in study design, engaging
57+
more "creatively" with the data.
4958

50-
The "study-design" mindset fits well with my organic inclinations as a humanist. I don't
51-
normally reason by data manipulation. The vagrancies of culture force me to think contextually:
52-
in terms of processes, timelines, relationships, narratives. And I would like to remain in that
53-
realm as long as possible when doing computational research.
59+
The study-design mindset fits well with my organic inclinations as a humanist. I don't
60+
normally reason by data manipulation. Reasoning by data manipulation alone risks "cooking the
61+
books" in losing sight of the underlying social or linguistic dynamics. The vagrancies of
62+
culture force me to think contextually: in terms of processes, timelines, customs, genres,
63+
relationships, narratives, etc. And I would like to remain firmly grounded in that realm when
64+
doing computational research.
31.3 KB
Loading
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
\NeedsTeXFormat{LaTeX2e}
2+
\ProvidesClass{texMemo}[2019/07/25 - Memo Class Tight Header and Logo]
3+
4+
% Load the Base Class
5+
\LoadClassWithOptions{scrartcl}
6+
7+
% Required packages
8+
\RequirePackage{ifthen}
9+
\RequirePackage{geometry}
10+
\geometry{margin=1.0in}
11+
\RequirePackage{graphicx}
12+
13+
% Memo Commands
14+
\def\@memoto{\relax}
15+
\newcommand{\memoto}[1]{\gdef\@memoto{#1}}
16+
17+
\def\@memofrom{\relax}
18+
\newcommand{\memofrom}[1]{\gdef\@memofrom{#1}}
19+
20+
\def\@memosubject{\relax}
21+
\newcommand{\memosubject}[1]{\gdef\@memosubject{#1}}
22+
23+
\def\@memodate{\relax}
24+
\newcommand{\memodate}[1]{\gdef\@memodate{#1}}
25+
26+
\def\@memologo{\relax}
27+
\newcommand{\memologo}[1]{\gdef\@memologo{\protect #1}}
28+
29+
% Decorative line
30+
\newcommand\decorativeline[1][1pt]{%
31+
\par\noindent\rule[0.5ex]{\linewidth}{#1}\par
32+
}
33+
34+
% Adjusted Memo Title and Logo positioned at top margin
35+
\renewcommand{\maketitle}{
36+
\vspace*{-1.2cm} % moves entire header upwards significantly
37+
\noindent
38+
\begin{minipage}[t]{0.7\textwidth}
39+
{\ttfamily
40+
\begin{tabular}{@{}ll@{}}
41+
\ifthenelse{\equal{\@memofrom}{\relax}}{}{From: & \@memofrom \\[2pt]}
42+
\ifthenelse{\equal{\@memosubject}{\relax}}{}{Subject: & \@memosubject \\[2pt]}
43+
\ifthenelse{\equal{\@memodate}{\relax}}{}{Date: & \@memodate \\[2pt]}
44+
\end{tabular}}
45+
\end{minipage}
46+
\begin{minipage}[t]{0.3\textwidth}
47+
\vspace{-0.9cm} % moves logo down
48+
\raggedleft
49+
\ifthenelse{\equal{\@memologo}{\relax}}{}{%
50+
\resizebox{0.55\linewidth}{!}{\@memologo}
51+
}
52+
\end{minipage}
53+
\vspace{-0.6cm}\decorativeline\smallskip{}
54+
}
55+
56+
% Paragraph style (unchanged)
57+
\KOMAoptions{parskip=half}
58+
\usepackage[T1]{fontenc}
59+
\addtokomafont{disposition}{\rmfamily}
60+
\addtokomafont{descriptionlabel}{\rmfamily}
61+
\renewcommand\labelitemii{$\circ$}
62+
\providecommand{\tightlist}{%
63+
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}

0 commit comments

Comments
 (0)