diff options
| author | root <root@turin.home> | 2022-01-21 22:56:08 +0000 |
|---|---|---|
| committer | root <root@turin.home> | 2022-01-21 22:56:08 +0000 |
| commit | d7604b97ae6fcfd20912a93da047a2b9e9f9c1de (patch) | |
| tree | 6d54b8268cfa071daf2aa77f78fab2dfc5748dea | |
Initial commit
| -rw-r--r-- | .gitignore | 12 | ||||
| -rw-r--r-- | Makefile | 7 | ||||
| -rw-r--r-- | formatting.ms | 40 | ||||
| -rw-r--r-- | paper.ms | 11 | ||||
| -rw-r--r-- | refer | 39 |
5 files changed, 109 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..88e4cd1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +**/latex.out +*~ +*.orig +*.pyc +.*.sw? +.sw? +*.elf +*.pdf +**/bin +**/build +**/target +**/__pycache__ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6bc8bf7 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +default: + ls target || mkdir target + cat formatting.ms paper.ms | refer -Ss -p refer | groff -ket -Tpdf -ms -P-pa4 > target/paper.pdf +read: + zathura target/paper.pdf& +clean: + rm -rf target diff --git a/formatting.ms b/formatting.ms new file mode 100644 index 0000000..0da30f1 --- /dev/null +++ b/formatting.ms @@ -0,0 +1,40 @@ +.\" text width +.nr LL 5.25i +.\" left margin +.nr PO 1.50i +.\" top margin +.nr HM 1.0i +.\" bottom margin +.nr FM 1.0i +.\" header/footer width +.nr LT \n[LL] +.\" point size +.nr PS 10pt +.\" line height +.nr VS 12p +.\" paragraph indent +.nr PI 0m +.\" interparagraph space +.nr PD 0.4v +.\" footnote width +.nr FL \n[LL] +.\" footnote point size +.nr FPS (\n[PS] - 2000) +.\" color for links (rgb) +.ds PDFHREF.COLOUR 0.35 0.00 0.60 +.\" border for links (default none) +.ds PDFHREF.BORDER 0 0 0 +.\" point size difference between heading levels +.nr PSINCR 1p +.\" heading level above which point size no longer changes +.nr GROWPS 2 +.\" page numbers in footer, centered +.rm CH +.ds FAM Sabon +.fzoom CR 750 +.fzoom CB 900 +.rm CH +.nr HY 1 +.R1 +accumulate +.R2 diff --git a/paper.ms b/paper.ms new file mode 100644 index 0000000..8244663 --- /dev/null +++ b/paper.ms @@ -0,0 +1,11 @@ +.TL +Title +.AU +Mohit Agarwal +.AI +January 2022 +.PP +The internet offers a potentially Utopian vision of human interaction. +The nature of computers and the information stored +-- todo: copism +.nr HY 0 @@ -0,0 +1,39 @@ +%T Stasiland +%A Anna Funder +%D 2003 +%I Granta Books +%G 9781783787340 +%O https://granta.com/products/stasiland/" + +%T Global digital population as of January 2021 +%A Joseph Johnson +%D 2021 +%J Statista +%O https://www.statista.com/statistics/617136/digital-population-worldwide/" + +%T Americans’ Internet Access: 2000-2015 +%A Andrew Perrin +%A Maeve Duggan +%J Pew Research Center +%D 2015 +%O https://www.pewresearch.org/internet/2015/06/26/americans-internet-access-2000-2015 + +%A van Mill, David +%T Freedom of Speech +%J The Stanford Encyclopedia of Philosophy +%E Edward N. Zalta +%O https://plato.stanford.edu/archives/spr2021/entries/freedom-speech/ +%D 2021 +%C Metaphysics Research Lab, Stanford University + +%T Why Twitter’s Mission Statement Matters +%A Justin Fox +%D 2014 +%J Harvard Business Review +%O https://hbr.org/2014/11/why-twitters-mission-statement-matters + +%T The great firewall of China: Xi Jinping’s internet shutdown +%A Elizabeth C. Economy +%D 2018 +%J The Guardian +%O https://www.theguardian.com/news/2018/jun/29/the-great-firewall-of-china-xi-jinpings-internet-shutdown |
