summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--Makefile11
-rw-r--r--paper.md13
-rw-r--r--plan.md26
-rw-r--r--reference.bib18
5 files changed, 72 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9477b70
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+**/latex.out
+**/target
+**/past-winners
+**/downloaded-research
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..289586b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+default: build
+
+build:
+ ls target || mkdir target
+ cp *md target/
+ pandoc -C target/paper.md -o target/paper.pdf -H https://mohit.uk/formatting.tex --pdf-engine=xelatex -V fontsize:12pt
+ pandoc -C target/paper.md --css=https://mohit.uk/document.css -s -o target/paper.html
+read:
+ zathura target/paper.pdf&
+clean:
+ rm -rf target
diff --git a/paper.md b/paper.md
new file mode 100644
index 0000000..26af3a3
--- /dev/null
+++ b/paper.md
@@ -0,0 +1,13 @@
+---
+title: The law and ethics
+author: Mohit Agarwal
+date: August 2021
+bibliography: ["reference.bib"]
+link-citations: true
+csl: http://www.zotero.org/styles/apa
+papersize: a4
+nocite: '@*'
+---
+<!-- *y -->
+
+# References and bibliography
diff --git a/plan.md b/plan.md
new file mode 100644
index 0000000..55bb788
--- /dev/null
+++ b/plan.md
@@ -0,0 +1,26 @@
+## Criminal law
+(sep-criminal-law)
+Punitive view: that the sole function of criminal law is to deliver
+justified punishment for crimes. This is generally accepted to some
+degree.
+
+Criminal law's function is responding to crime: calling offenders to
+account for criminal activity. Can have value without punishment. No
+arbitrary punishment, but rather proof of guilt in a court.
+
+Community:
+
+ More importantly, one might claim that in the case of paradigmatic
+ crimes—like robbery, rape, or battery—criminal law responds to
+ wrongs on behalf of particular individuals—on behalf of those who
+ have been robbed, raped, or battered. On this view, a positive
+ case for criminalization need not await the finding that 𝐷 owes
+ something to the whole community. It is at least sometimes enough
+ that 𝐷 owes something to those 𝐷 has wronged, which 𝐷 would fail
+ to provide in the absence of criminal proceedings.
+
+Preventing wrongdoing: potentially flawed. Reference prohibition.
+
+## How much law is there
+- find source
+- anarchist handbook: ?
diff --git a/reference.bib b/reference.bib
new file mode 100644
index 0000000..942f50a
--- /dev/null
+++ b/reference.bib
@@ -0,0 +1,18 @@
+@book{stasiland,
+ title = "Stasiland",
+ author = "Anna Funder",
+ year = "2003",
+ publisher = "Granta Books",
+ isbn = "9781783787340",
+ url = "https://granta.com/products/stasiland/"
+}
+@InCollection{sep-criminal-law,
+ author = {Edwards, James},
+ title = {{Theories of Criminal Law}},
+ booktitle = {The {Stanford} Encyclopedia of Philosophy},
+ editor = {Edward N. Zalta},
+ url = "https://plato.stanford.edu/archives/fall2021/entries/criminal-law/",
+ year = {2021},
+ edition = {{F}all 2021},
+ publisher = {Metaphysics Research Lab, Stanford University}
+}