-
Notifications
You must be signed in to change notification settings - Fork 1
/
HaskellArticles.tex
510 lines (360 loc) · 16.9 KB
/
HaskellArticles.tex
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
%% Buchvorlage unter Verwendung der Book-Klasse des KOMA-Script %%
%% Basierend auf einer TeXNicCenter-Vorlage von Mark Müller %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Wählen Sie die Optionen aus, indem Sie % vor der Option entfernen
% Dokumentation des KOMA-Script-Packets: scrguide
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Optionen zum Layout des Buchs %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[
%a5paper, % alle weiteren Papierformat einstellbar
%landscape, % Querformat
12pt, % Schriftgröße (12pt, 11pt (Standard))
%BCOR1cm, % Bindekorrektur, bspw. 1 cm
%DIVcalc, % führt die Satzspiegelberechnung neu aus
% s. scrguide 2.4
%oneside, % einseitiges Layout
%twocolumn, % zweispaltiger Satz
%openany, % Kapitel können auch auf linken Seiten beginnen
%halfparskip*, % Absatzformatierung s. scrguide 3.1
%headsepline, % Trennline zum Seitenkopf
%footsepline, % Trennline zum Seitenfuß
%notitlepage, % in-page-Titel, keine eigene Titelseite
%chapterprefix, % vor Kapitelüberschrift wird "Kapitel Nummer" gesetzt
%appendixprefix, % Anhang wird "Anhang" vor die Überschrift gesetzt
%normalheadings, % Überschriften etwas kleiner (smallheadings)
idxtotoc, % Index im Inhaltsverzeichnis
liststotoc, % Abb.- und Tab.verzeichnis im Inhalt
bibtotoc, % Literaturverzeichnis im Inhalt
%leqno, % Nummerierung von Gleichungen links
%fleqn, % Ausgabe von Gleichungen linksbündig
%draft % überlangen Zeilen in Ausgabe gekennzeichnet
]
{scrbook}
%\pagestyle{empty} % keine Kopf und Fußzeile (k. Seitenzahl)
%\pagestyle{headings} % lebender Kolumnentitel
%% Fonts für pdfLaTeX, falls keine cm-super-Fonts installiert%%%%%%%%%
%% Packages für Grafiken & Abbildungen %%%%%%%%%%%%%%%%%%%%%%
\usepackage[pdftex]{graphicx} %%Grafiken in pdfLaTeX
%% optischer Randausgleich, falls pdflatex verwandt %%%%%%%%%%%%%%%%%%%
\usepackage[activate]{pdfcprot}
\usepackage[dvipsnames]{xcolor}
\usepackage[T1]{fontenc} % T1-Kodierung des Zeichensatzes
\usepackage[utf8]{inputenc} % Eingabekodierung (Linux)
\usepackage{
,soul % Sperren, Unterstreichen, Durchstreichen ...
,array % Erweiterungen für Tabellen
,booktabs % " " "
,supertabular % Mehrseitige Tabellen
,longtable % " "
,colortbl % Farben in Tabellenzellen
,tabularx
,textcomp % Zusätzliche (Sonder)Zeichen
,natbib % Formatierung der Zitate
,calc % Rechnen mit LaTeX-Längen und -Zählern
,url % URLs setzen
,tocloft % Verzeichnisse (TOC, LOF, LOT) formatieren
,graphicx % Grafiken einbinden
,paralist % Zusätzliche Listen-Umgebungen
,multicol % Mehrspaltensatz
,ragged2e % Bessere Trennung bei Flattersatz
,pst-3d % Für das Beispiel der verschrägten Aufrechten
,pst-pdf % PostScript-Code mit pdflatex verwenden
,fixltx2e % Korrigiert Fehler und erweitert LaTeX2e
,cmap % verbessert das Kopieren aus PDF-Anzeigeprogrammen und
% das Durchsuchen von PDF-Dateien
,makeidx % Index-Erzeugung
}
\usepackage{textcomp}
\usepackage{lmodern}
\usepackage[sc, osf]{mathpazo}
\usepackage{amsmath}
%% deutsche Anpassung %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[english]{babel}
\usepackage{multirow,bigdelim}
\usepackage[paper=a4paper,left=25mm,right=25mm,top=20mm,bottom=28mm]{geometry}
\usepackage{niceframe}
\usepackage[english]{varioref} % »Intelligente« Querverweise
\usepackage{tabulary}
\usepackage{wrapfig}
\usepackage{ amssymb }
\usepackage[normalem]{ulem}
% Neue Option »C« für longtable, um Tabellen > \textwidth auf der Seite
% zu zentrieren (Heiko Oberdiek in <[email protected]>) unter
% Berücksichtigung des im Rand zur Verfügung stehenden Freiraums (Markus
% Kohm in <[email protected]>).
\makeatletter
\let\ORG@LT@array\LT@array
\def\LT@array[#1]{%
\if C#1%
\setlength{\@tempdima}{\oddsidemargin}
\addtolength{\@tempdima}{1in}
\LTleft=0pt plus 1fill minus \@tempdima
\LTright=\LTleft
\expandafter\ORG@LT@array\expandafter[\expandafter x\expandafter]%
\else
\@ReturnAfterFi{%
\ORG@LT@array[{#1}]%
}%
\fi
}
\long\def\@ReturnAfterFi#1\fi{\fi#1}
\makeatother
% um Tabellenspalten mit Flattersatz zu setzen, muss \\ vor
% (z.B.) \raggedright geschützt werden:
\newcommand{\PreserveBackslash}[1]{\let\temp=\\#1\let\\=\temp}
%
% Spalten mit Flattersatz:
% Linksbündig:\chapter{Massage}
\newcolumntype{L}[1]{>{\PreserveBackslash\RaggedRight}m{#1}}
\newcolumntype{M}[1]{>{\PreserveBackslash\RaggedRight}p{#1}}
% Rechtsbündig (nicht verwendet im Dokument):
\newcolumntype{R}[1]{>{\PreserveBackslash\RaggedLeft}m{#1}}
\newcolumntype{S}[1]{>{\PreserveBackslash\RaggedLeft}p{#1}}
% Zentriert (nicht verwendet im Dokument):
\newcolumntype{Z}[1]{>{\PreserveBackslash\Centering}m{#1}}
\newcolumntype{A}[1]{>{\PreserveBackslash\Centering}p{#1}}
% Tabellen mit grauem Header und grauer hline am Ende und entsprechend
% eingestellten Schriften (in diesem Fall nur fett); Verwendung über
% \hdrow (s.u.)
%
% Linksbündig:
\newcolumntype{H}{>{\fontseries{b}\selectfont%
\columncolor[gray]{.8}[6pt][0pt]}l}
% Zentriert (nicht verwendet im Dokument):
\newcolumntype{I}{>{\fontseries{b}\selectfont%
\columncolor[gray]{.8}[6pt][0pt]}c}
% Rechtsbündig (nicht verwendet im Dokument):
\newcolumntype{J}{>{\fontseries{b}\selectfont%
\columncolor[gray]{.8}[6pt][0pt]}r}
%
\newcommand{\hdrow}[2]{%
\multicolumn{1}{#1@{}}{%
\raisebox{.1mm}{% Ausrichtung der Beschriftung
#2%
}\rule{0pt}{4mm}}% unsichtbare Linie, die die Kopfzeile höher macht
}
% Alternative ohne \multicolumn und \columncolor, direkt über \rowcolor:
%\newcommand{\Hdrow}[1]{\rowcolor[gray]{.8}#1 \\\addlinespace}\chapter{Massage}
\newenvironment{tabelle}[2][c]{%
\renewcommand{\arraystretch}{1.2} % Größere Abstände zwischen Zeilen
\sffamily\small % Serifenlose und kleine Schrift
\begin{longtable}[#1]{#2}
}
{\end{longtable}\renewcommand{\arraystretch}{1}% Abstände wieder
% zurücksetzen
\normalsize\rmfamily % Schrift wieder zurücksetzen
}
% Auch »Abbildung« und nicht nur die Nummer wird zum Link (abgeleitet
% aus Posting von Heiko Oberdiek ([email protected]);
% Verwendung: In \abbvref{label} ist ein Beispiel dargestellt
\providecommand*{\abbvrefname}{Abbildung}
\newcommand*{\abbvref}[1]{%
\hyperref[#1]{\abbvrefname}\vref{#1}%
}
\usepackage[%
breaklinks % Links »überstehen« Zeilenumbruch
,backref % Backlinks im Literaturverzeichnis
,colorlinks % Links erhalten Farben statt Kästen
,citecolor=myblue % Farbe für Zitate
,linkcolor=myblue % beeinflusst Inhaltsverzeichnis und Seitenzahlen
,urlcolor=myblue % Farbe für URLs
,bookmarks % Erzeugung von Bookmarks für PDF-Viewer
,bookmarksnumbered % Nummerierung der Bookmarks
,hyperfootnotes=false % Keine Links auf Fußnoten
,pdfpagelabels
,pdftex
,pdftitle={Haskell Articles}
,pdfsubject={A List of Haskell Articles on good design, good testing}
,pdfauthor={Michael Oswald}
,pdfcreator={LaTeX, hyperref, KOMA-Script}
,pdfstartview=FitH, % Dokument wird »Fit Width« geöffnet
,pdfpagemode=UseOutlines % Bookmarks im Viewer anzeigen
,pdfdisplaydoctitle=true
,bookmarksopenlevel=2 % Gliederungstiefe der Bookmarks
]
{hyperref} % PDF automatisch mit Links versehen und weitere
% Hypertext-Funktionalität ermöglichen
% Farbdefinitionen:
\definecolor{myblue}{rgb}{0,.1,.6}
\definecolor{myblue2}{rgb}{0,.4,.6}
\definecolor{grau}{gray}{.4}
\definecolor{ecru}{rgb}{1,.98823529411764705,.95686274509803921568}
\usepackage[figure]{hypcap} % Links auf Gleitumgebungen springen nicht
% zur Beschriftung, sondern zum Anfang der
% Gleitumgebung
\usepackage{minted}
\usepackage{scrextend}
% 3-spaltiger Index
\makeatletter
\renewenvironment{theindex}{%
\begin{multicols}{3}[\section*{\indexname}][19\baselineskip]%
\setlength{\parindent}{0pt}\pagestyle{plain}\let\item\@idxitem}
{\end{multicols}}
\makeatother
% Zweispaltige Fußnoten
\usepackage{dblfnote}
% Keine hochgestellten Ziffern in der Fußnote (KOMA-Script-spezifisch):
\deffootnote[1.5em]{0pt}{1em}{\makebox[1.5em][l]{\bfseries\thefootnotemark}}
% Abstand zwischen Fußnoten vergrößern:
\setlength{\footnotesep}{.85\baselineskip}
\renewcommand{\footnoterule}{} % Keine Trennlinie zur Fußnote
\addtolength{\skip\footins}{\baselineskip} % Abstand Text <-> Fußnote
% Fußnoten immer ganz unten auf einer \raggedbottom-Seite
\usepackage{fnpos}
\raggedbottom % Variable Seitenhöhen zulassen
%% Bibliographiestil %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\usepackage{natbib}
\newcommand{\todo}{\colorbox{yellow}{TODO} }
\newcommand{\doublepic}[4]{%
\begin{figure}[htbp]
\begin{minipage}[b]{0.5\linewidth}
\includegraphics[width=.95\linewidth]{pics/#1}
\caption{#2}
\label{fig:#1}
\end{minipage}
\begin{minipage}[b]{0.5\linewidth}
\centering
\vfill
\includegraphics[width=.95\linewidth]{pics/#3}
\vfill
\caption{#4}
\label{fig:#3}
\end{minipage}
\end{figure}
}
\colorlet{tableheader}{Bittersweet}
\colorlet{tableline}{YellowOrange}
\font\teng=teng10
\addtokomafont{caption}{\itshape}
\addtokomafont{captionlabel}{\itshape}
\begin{document}
%% Dateiendungen für Grafiken %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% ==> Sie können hiermit die Dateiendung einer Grafik weglassen.
%% ==> Aus "\includegraphics{titel.eps}" wird "\includegraphics{titel}".
%% ==> Wenn Sie nunmehr 2 inhaltsgleiche Grafiken "titel.eps" und
%% ==> "titel.pdf" erstellen, wird jeweils nur die Grafik eingebunden,
%% ==> die von ihrem Compiler verarbeitEine integrale Analyse der politischen
%% ==> pdfLaTeX benutzt "titel.pdf". LaTeX benutzt "titel.eps".
\ifpdf
\DeclareGraphicsExtensions{.pdf,.jpg,.png}
\else
\DeclareGraphicsExtensions{.eps}
\fi
\newcommand*{\mtol}{This is some more text than fit at ony line but only some
and not a lot}
\newenvironment{mldescription}{%
\begin{addmargin}[2em]{1em}
\setlength{\parindent}{-1em}%
\newcommand*{\mlitem}[1]{\par\textbf{##1}\quad}\indent
}{%
\end{addmargin}
\medskip
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\includegraphics[wid%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Ihr Buch %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Schmutztitel-Seite %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\extratitle{Schmutztitel}
%% eigene Titelseitengestaltung %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{titlepage}
%Einsetzen der TXC Vorlage "Deckblatt" möglich
\rule{\textwidth}{0pt}
\vspace{6\baselineskip}
%\begin{center}
%\includegraphics[width=0.4\textwidth]{pics/Amatsu_Ryoho_Flower_Final_Doc}
%\begin{minipage}[b]{0.3\linewidth}
% \includegraphics[width=.95\linewidth]{pics/Amatsu_Integral.png}
% \end{minipage}
%\end{center}
\vspace{7\baselineskip}
\begin{flushright}
\Huge\textsc{\textit{A List of Haskell Articles on good design, good testing}}
\large{}V\input{git_tag.tex}
\rule{\textwidth}{4pt}
% \Large \amrint
\large William Yao
\large Matt Parsons
\large David Luposchainsky
\large Alexis King
\large Jasper Van der Jeugt
\large Tom Ellis
\large Michael Snoyman
\large Sandy Maguire
\large Oskar Wickström
\large Scott Wlaschin
\large Hillel Wayne
\end{flushright}
\vfill
\tiny \copyright{} by above mentioned authors, compilation by M. Oswald.
\texttt{\input{git_hash.tex}}
\end{titlepage}
%% Angaben zur Standardformatierung des Titels %%%%%%%%%%%%%%%%%%%%%%%%
%\titlehead{Titelkopf}
%\subject{Typisierung}
%\title{Der Name Ihrer Arbeit}
%\author{Ihr Name}
%\and{Der Name des Co-Autoren}
%\thanks{Fußnote} % entspr. \footnote im Fließtext
%\date{} % falls anderes, als das aktuelle gewünscht
%\publishers{Herausgeber}
%% Rückseite der Titelseite %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\uppertitleback{Titelrückseitenkopf}
%\lowertitleback{Titelrückseitenfuß}
%% Widmungsseite %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\dedication{Widmung}
%\maketitle % Titelei wird erzeugt
%% Erzeugung von Verzeichnissen %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
{\sffamily
\noindent This document can be freely copied, shared and distritbuted under the Creative Commons CC BY-SA
\vfill
\begin{flushleft}
The homepage for this document is:
\url{https://github.com/oswald2/haskell_articles}
\end{flushleft}
}
\newpage
\tableofcontents % Inhaltsverzeichnis
\listoffigures % Abbildungsverzeichnis
%\listoftables % Tabellenverzeichnis
%% Der Text %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Introduction}
William Yao created a link collection (\href{https://williamyaoh.com/posts/2019-11-24-design-and-testing-articles.html}{see here} and here \cite{original_article}) of Haskell articles about design and testing. I did like this collection very much but wanted to have all of them in one document, with one formatting. So the idea of this document (which is now more like a book) was born.
I included Williams original comments to the articles at the beginning of each chapter. The articles themselves were included as unchanged as possible. Sometimes the formatting needed to change, sometimes they referenced each other, sometimes \LaTeX{} needed to be convinced to apply a certain formatting. Anyway, now it is done, so I wish all of you readers a lot of fun reading this document while hopefully learning something new.
\vspace{\baselineskip}
\noindent \textit{Michael Oswald}
\chapter{Introduction by William Yao}
For a language that's beloved for its ability to guide the structure of programs into being easier to understand, easier to maintain, and easier to get correct, there's not a lot of resources on how to best use the tools that Haskell provides. Lots of terms and buzzwords, not a lot of in-depth practical guidance on best practices. So I've put together a list of community blog posts and articles on the theme of \emph{building more correct programs}.
These are split roughly in two groups: posts about how best to leverage the type system to eliminate errors before they even occur, while striking a balance between type complexity and usability; and posts about using Haskell's best-in-class testing facilities to shore up what can't be typed\footnote{Or at least, not typed easily}. Despite the hype around Haskell's type system, it's unlikely in a program of any complexity that you'll be able to completely eliminate the possibility of bugs and errors purely through the type system alone. Using both types \emph{and} tests gives you a better power-to-weight ratio for building maintainable, bug-free programs than either does alone.
Note that I'm explicitly not including articles and resources about basics or setup of the topics in question. Instead of ``what is a \texttt{Maybe} and why use it,'' think ``what are some typical patterns around using \texttt{Maybes} in a real codebase.'' Instead of ``what is property-based testing'', think ``here are best practices around choosing properties to test.'' Since there are already plenty of good introductory resources on things like ``how do I get started with QuickCheck'', we'll focus here instead on how best to use the tools we have.
I'm fully aware that this is not a complete listing even of topics that Haskell programmers know about and regularly make use of\footnote{Tagged datatypes, for instance. It's easy to explain what they are, but I haven't seen good examples of how people use them in a real codebase.}. If you feel there are articles missing from here that are clear, easy-to-understand, and go in-depth on how to use correctness-enforcing techniques, please let me know!
Found this useful? Still have questions? Talk to me!
\vspace{\baselineskip}
\noindent Posts in each section are roughly ordered by difficulty.
\part{Posts on designing and structuring code}
\input{matt_parsons.tex}
\input{david_luposchainsky.tex}
\input{alexis_king.tex}
\input {jasper_van_der_jeugt.tex}
\input {tom_ellis.tex}
\input{michael_snoyman.tex}
\input{matt_parsons2.tex}
\input{sandy_maguire.tex}
\input{jasper_van_der_jeugt3.tex}
\input{michael_snoyman2.tex}
\part{Posts on testing}
\input{jasper_van_der_jeugt2.tex}
\input{oskar_wickstrom.tex}
\input{scott_wlaschin.tex}
\input{hillel_wayne.tex}
\input{alexis_king2.tex}
\input{oskar_wickstrom2.tex}
\input{hillel_wayne2.tex}
\input{alexis_king3.tex}
\appendix % Beginn des Anhangs
%% Bibliographie unter Verwendung von dinnat %%%%%%%%%%%%%%%%%%%%%%%%%%
%\setbibpreamble{Präambel} % Text vor dem Verzeichnis
\bibliographystyle{plain}
\bibliography{HaskellArticles} % Sie benötigen einen *.bib-Datei
\end{document}