diff --git a/doc/report/.gitignore b/doc/report/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..739ce0714ae138846ae41a6fad00fd645a4c7c00 --- /dev/null +++ b/doc/report/.gitignore @@ -0,0 +1,9 @@ +*.aux +*.bbl +*.blg +*.dvi +*.log +*.pdf +*.out +*.bcf +*.run.xml \ No newline at end of file diff --git a/doc/report/Makefile b/doc/report/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..f72c84727a35e6ea23e0ed85000b973f028b83ea --- /dev/null +++ b/doc/report/Makefile @@ -0,0 +1,14 @@ +report.pdf: report.tex references.bib + chronic pdflatex $< + chronic biber $(basename $<) + chronic pdflatex $< + +view: report.pdf + mupdf $< + +clean: + rm -f report.pdf + rm -f *.aux *.bbl *.blg *.dvi *.log *.pdf *.out + rm -f *.bcf *.run.xml + +.PHONY: view clean diff --git a/doc/report/references.bib b/doc/report/references.bib new file mode 100644 index 0000000000000000000000000000000000000000..51d2e27cc8de8e7874df8776e56b4347a5ad4b91 --- /dev/null +++ b/doc/report/references.bib @@ -0,0 +1,8 @@ +@online{wikibook, + title = {Generating Bibliographies with biblatex and biber}, + organization = {Wikibooks}, + date = {2016}, + urldate = {2016-03-07}, + url = {https://en.wikibooks.org/wiki/LaTeX/Generating_Bibliographies_with_biblatex_and_biber}, + keywords = {untrusted}, +} diff --git a/doc/report/report.tex b/doc/report/report.tex new file mode 100644 index 0000000000000000000000000000000000000000..b7fa6acda0500ba1f557042200a993b29a8b2d1a --- /dev/null +++ b/doc/report/report.tex @@ -0,0 +1,77 @@ +\documentclass[a4paper]{scrartcl} + +\usepackage[backend=biber]{biblatex} +\usepackage[utf8]{inputenc} +\usepackage{amsmath} +\usepackage{geometry} +\usepackage{hyperref} +\usepackage{lipsum} +\usepackage{multicol} + +\addbibresource{references.bib} +\geometry{a4paper, portrait} +\pagenumbering{gobble} + +\title{ulo-storage} +\subtitle{Indexing and Querying Organizational Data in Mathematical Libraries} +\author{Andreas Schärtl (\texttt{ru64tiji})} +\date{\vspace{-1cm}} + +\begin{document} + +% [Title] +\maketitle{} + +% [Abstract] +\begin{abstract} +\lipsum[1] +\end{abstract} + +\section{Crystal Palace} + +Then --- this is all what you say --- new economic relations will be +established, all ready-made and worked out with mathematical +exactitude, so that every possible question will vanish in the +twinkling of an eye, simply because every possible answer to it will be +provided. Then the "Palace of Crystal" will be built. Then ... In +fact, those will be halcyon days. Of course there is no guaranteeing +(this is my comment) that it will not be, for instance, frightfully +dull then (for what will one have to do when everything will be +calculated and tabulated), but on the other hand everything will be +extraordinarily rational. Of course boredom may lead you to anything. +It is boredom sets one sticking golden pins into people, but all that +would not matter. What is bad (this is my comment again) is that I +dare say people will be thankful for the gold pins then. Man is +stupid, you know, phenomenally stupid; or rather he is not at all +stupid, but he is so ungrateful that you could not find another like +him in all creation. I, for instance, would not be in the least +surprised if all of a sudden, A PROPOS of nothing, in the midst of +general prosperity a gentleman with an ignoble, or rather with a +reactionary and ironical, countenance were to arise and, putting his +arms akimbo, say to us all: "I say, gentleman, hadn't we better kick +over the whole show and scatter rationalism to the winds, simply to +send these logarithms to the devil, and to enable us to live once more +at our own sweet foolish will!" That again would not matter, but what +is annoying is that he would be sure to find followers --- such is the +nature of man. And all that for the most foolish reason, which, one +would think, was hardly worth mentioning: that is, that man everywhere +and at all times, whoever he may be, has preferred to act as he chose +and not in the least as his reason and advantage dictated. And one may +choose what is contrary to one's own interests, and sometimes one +POSITIVELY OUGHT (that is my idea). One's own free unfettered choice, +one's own caprice, however wild it may be, one's own fancy worked up at +times to frenzy --- is that very "most advantageous advantage" which we +have overlooked, which comes under no classification and against which +all systems and theories are continually being shattered to atoms. + +\section{Choice} + +And how do these wiseacres know that man wants a normal, a virtuous +choice? What has made them conceive that man must want a rationally +advantageous choice? What man wants is simply INDEPENDENT choice, +whatever that independence may cost and wherever it may lead. And +choice, of course, the devil only knows what choice~\cite{wikibook}. + +\printbibliography{} + +\end{document}