This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Creates a dict() where the key is the element and the value is the amount of times it is it the given list. | |
| def count_v(data): | |
| output = dict() | |
| for value in data: | |
| print data[value] | |
| if output.has_key(data[value]): | |
| output[data[value]] += 1 | |
| else: | |
| output[data[value]] = 1 | |
| return output |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[12pt,a4paper]{scrartcl} | |
| \usepackage[utf8x]{inputenc} | |
| \usepackage[ngerman]{babel} | |
| \author{Rico} | |
| \usepackage{color} | |
| %\textcolor{farbe}{text} | |
| %\color{farbe}{text} | |
| %\pagecolor{farbe} | |
| %\colorbox{farbe}{text} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[10pt,a4paper]{article} | |
| \usepackage[utf8]{inputenc} | |
| \usepackage[lmodern][fontenc] | |
| \begin{document} | |
| %\vspace*{2cm} | |
| Ich bin Blindtext. Von Geburt an. Es hat lange gedauert, | |
| bis ich begriffen habe, was es bedeutet, ein blinder Text zu sein: | |
| Man macht keinen Sinn. Man wirkt hier und da aus dem Zusammenhang gerissen. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[12pt,a4paper]{article} | |
| \usepackage[utf8]{inputenc} | |
| \usepackage[lmodern][fontenc] | |
| \usepackage[ngerman]{babel} | |
| \usepackage{amsmath} | |
| \usepackage{amsfonts} | |
| \usepackage{amssymb} | |
| \usepackage{lmodern} | |
| \author{Rico} | |
| \begin{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[12pt,a4paper]{scrartcl} | |
| \usepackage[utf8]{inputenc} %keine Probleme mit Umlauten | |
| \usepackage[lmodern]{fontenc} | |
| \usepackage[ngerman]{babel} %Deutsche Rechtschreibprüfung | |
| \begin{document} | |
| Partyvorbereitung:\\ | |
| \begin{tabular}[c]{l@{x\ }l} | |
| 10 & Chips\\ | |
| 10 & Cola\\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[12pt,a4paper]{scrartcl} | |
| \usepackage[utf8x]{inputenc} | |
| \usepackage[ngerman]{babel} | |
| \parindent0cm | |
| \author{Rico \thanks{Allen die zuschauen} \and www.icancode.de} | |
| \title{Beispieldokument} | |
| \date{\today} | |
| \subject{Bachelorarbeit} |
NewerOlder