Initial commmit
This commit is contained in:
commit
55de3b118a
6 changed files with 181 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*.log
|
||||||
|
*.aux
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# writtenMorse Specifications
|
||||||
|
|
||||||
|
Specifications for writtenMorse code.
|
BIN
morse/main.pdf
Normal file
BIN
morse/main.pdf
Normal file
Binary file not shown.
87
morse/main.tex
Normal file
87
morse/main.tex
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
\documentclass[a4paper, 11pt]{article}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage[T1]{fontenc}
|
||||||
|
\usepackage[sfdefault]{FiraSans}
|
||||||
|
\usepackage{booktabs}
|
||||||
|
\usepackage{longtable}
|
||||||
|
\usepackage{tabu}
|
||||||
|
\usepackage[table]{xcolor}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\title{Morse Code}
|
||||||
|
\author{Marcel Kapfer}
|
||||||
|
\date{April 2014}
|
||||||
|
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\rowcolors{2}{gray!15}{white}
|
||||||
|
|
||||||
|
\begin{longtabu} to \linewidth {X[1,l] X[1,r]}
|
||||||
|
\toprule
|
||||||
|
\texttt{A} & \texttt{.-} \\ \midrule
|
||||||
|
\texttt{B} & \texttt{-...} \\ \midrule
|
||||||
|
\texttt{C} & \texttt{.-.-} \\ \midrule
|
||||||
|
\texttt{D} & \texttt{-..} \\ \midrule
|
||||||
|
\texttt{E} & \texttt{.} \\ \midrule
|
||||||
|
\texttt{F} & \texttt{..-.} \\ \midrule
|
||||||
|
\texttt{G} & \texttt{--.} \\ \midrule
|
||||||
|
\texttt{H} & \texttt{....} \\ \midrule
|
||||||
|
\texttt{I} & \texttt{..} \\ \midrule
|
||||||
|
\texttt{J} & \texttt{.---} \\ \midrule
|
||||||
|
\texttt{K} & \texttt{-.-} \\ \midrule
|
||||||
|
\texttt{L} & \texttt{.-..} \\ \midrule
|
||||||
|
\texttt{M} & \texttt{--} \\ \midrule
|
||||||
|
\texttt{N} & \texttt{-.} \\ \midrule
|
||||||
|
\texttt{O} & \texttt{---} \\ \midrule
|
||||||
|
\texttt{P} & \texttt{.--.} \\ \midrule
|
||||||
|
\texttt{Q} & \texttt{--.-} \\ \midrule
|
||||||
|
\texttt{R} & \texttt{.-.} \\ \midrule
|
||||||
|
\texttt{S} & \texttt{...} \\ \midrule
|
||||||
|
\texttt{T} & \texttt{-} \\ \midrule
|
||||||
|
\texttt{U} & \texttt{..-} \\ \midrule
|
||||||
|
\texttt{V} & \texttt{...-} \\ \midrule
|
||||||
|
\texttt{W} & \texttt{.--} \\ \midrule
|
||||||
|
\texttt{X} & \texttt{-..-} \\ \midrule
|
||||||
|
\texttt{Y} & \texttt{-.--} \\ \midrule
|
||||||
|
\texttt{Z} & \texttt{--..} \\ \midrule
|
||||||
|
\texttt{0} & \texttt{-----} \\ \midrule
|
||||||
|
\texttt{1} & \texttt{.----} \\ \midrule
|
||||||
|
\texttt{2} & \texttt{..---} \\ \midrule
|
||||||
|
\texttt{3} & \texttt{...--} \\ \midrule
|
||||||
|
\texttt{4} & \texttt{....-} \\ \midrule
|
||||||
|
\texttt{5} & \texttt{.....} \\ \midrule
|
||||||
|
\texttt{6} & \texttt{-....} \\ \midrule
|
||||||
|
\texttt{7} & \texttt{--...} \\ \midrule
|
||||||
|
\texttt{8} & \texttt{---..} \\ \midrule
|
||||||
|
\texttt{9} & \texttt{----.} \\ \midrule
|
||||||
|
\texttt{Ä} & \texttt{.-.-} \\ \midrule
|
||||||
|
\texttt{Ö} & \texttt{---.} \\ \midrule
|
||||||
|
\texttt{Ü} & \texttt{..--} \\ \midrule
|
||||||
|
\texttt{ß} & \texttt{...--...} \\ \midrule
|
||||||
|
\texttt{.} & \texttt{.-.-.-} \\ \midrule
|
||||||
|
\texttt{,} & \texttt{--..--} \\ \midrule
|
||||||
|
\texttt{:} & \texttt{---...} \\ \midrule
|
||||||
|
\texttt{;} & \texttt{-.-.-.} \\ \midrule
|
||||||
|
\texttt{?} & \texttt{..--..} \\ \midrule
|
||||||
|
\texttt{!} & \texttt{-.-.--} \\ \midrule
|
||||||
|
\texttt{-} & \texttt{-....-} \\ \midrule
|
||||||
|
\texttt{\_} & \texttt{..--.-} \\ \midrule
|
||||||
|
\texttt{(} & \texttt{-.--.} \\ \midrule
|
||||||
|
\texttt{)} & \texttt{-.--.-} \\ \midrule
|
||||||
|
\texttt{=} & \texttt{-...-} \\ \midrule
|
||||||
|
\texttt{+} & \texttt{.-.-.} \\ \midrule
|
||||||
|
\texttt{/} & \texttt{-..-.} \\ \midrule
|
||||||
|
\texttt{@} & \texttt{.--.-.} \\ \midrule
|
||||||
|
\texttt{'} & \texttt{.----.} \\ \midrule
|
||||||
|
\texttt{\$} & \texttt{...-..-} \\ \bottomrule
|
||||||
|
\end{longtabu}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
\begin{flushright}
|
||||||
|
\small{CC-BY-SA 4.0\\
|
||||||
|
Marcel Kapfer\\
|
||||||
|
2016}
|
||||||
|
\end{flushright}
|
||||||
|
|
||||||
|
\end{document}
|
BIN
writtenmorse/main.pdf
Normal file
BIN
writtenmorse/main.pdf
Normal file
Binary file not shown.
89
writtenmorse/main.tex
Normal file
89
writtenmorse/main.tex
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
\documentclass[a4paper, 11pt]{article}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage[T1]{fontenc}
|
||||||
|
\usepackage[sfdefault]{FiraSans}
|
||||||
|
\usepackage{booktabs}
|
||||||
|
\usepackage{longtable}
|
||||||
|
\usepackage{tabu}
|
||||||
|
\usepackage[table]{xcolor}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\title{Morse Code}
|
||||||
|
\author{Marcel Kapfer}
|
||||||
|
\date{April 2014}
|
||||||
|
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\rowcolors{2}{gray!15}{white}
|
||||||
|
|
||||||
|
\begin{longtabu} to \linewidth {X[1,l] X[1,r]}
|
||||||
|
\toprule
|
||||||
|
\texttt{A} & \texttt{01} \\ \midrule
|
||||||
|
\texttt{B} & \texttt{1000} \\ \midrule
|
||||||
|
\texttt{C} & \texttt{0101} \\ \midrule
|
||||||
|
\texttt{D} & \texttt{100} \\ \midrule
|
||||||
|
\texttt{E} & \texttt{0} \\ \midrule
|
||||||
|
\texttt{F} & \texttt{0010} \\ \midrule
|
||||||
|
\texttt{G} & \texttt{110} \\ \midrule
|
||||||
|
\texttt{H} & \texttt{0000} \\ \midrule
|
||||||
|
\texttt{I} & \texttt{00} \\ \midrule
|
||||||
|
\texttt{J} & \texttt{0111} \\ \midrule
|
||||||
|
\texttt{K} & \texttt{101} \\ \midrule
|
||||||
|
\texttt{L} & \texttt{0100} \\ \midrule
|
||||||
|
\texttt{M} & \texttt{11} \\ \midrule
|
||||||
|
\texttt{N} & \texttt{10} \\ \midrule
|
||||||
|
\texttt{O} & \texttt{111} \\ \midrule
|
||||||
|
\texttt{P} & \texttt{0110} \\ \midrule
|
||||||
|
\texttt{Q} & \texttt{1101} \\ \midrule
|
||||||
|
\texttt{R} & \texttt{010} \\ \midrule
|
||||||
|
\texttt{S} & \texttt{000} \\ \midrule
|
||||||
|
\texttt{T} & \texttt{1} \\ \midrule
|
||||||
|
\texttt{U} & \texttt{001} \\ \midrule
|
||||||
|
\texttt{V} & \texttt{0001} \\ \midrule
|
||||||
|
\texttt{W} & \texttt{011} \\ \midrule
|
||||||
|
\texttt{X} & \texttt{1001} \\ \midrule
|
||||||
|
\texttt{Y} & \texttt{1011} \\ \midrule
|
||||||
|
\texttt{Z} & \texttt{1100} \\ \midrule
|
||||||
|
\texttt{0} & \texttt{11111} \\ \midrule
|
||||||
|
\texttt{1} & \texttt{01111} \\ \midrule
|
||||||
|
\texttt{2} & \texttt{00111} \\ \midrule
|
||||||
|
\texttt{3} & \texttt{00011} \\ \midrule
|
||||||
|
\texttt{4} & \texttt{00001} \\ \midrule
|
||||||
|
\texttt{5} & \texttt{00000} \\ \midrule
|
||||||
|
\texttt{6} & \texttt{10000} \\ \midrule
|
||||||
|
\texttt{7} & \texttt{11000} \\ \midrule
|
||||||
|
\texttt{8} & \texttt{11100} \\ \midrule
|
||||||
|
\texttt{9} & \texttt{11110} \\ \midrule
|
||||||
|
\texttt{Ä} & \texttt{0101} \\ \midrule
|
||||||
|
\texttt{Ö} & \texttt{1110} \\ \midrule
|
||||||
|
\texttt{Ü} & \texttt{0011} \\ \midrule
|
||||||
|
\texttt{ß} & \texttt{00011000} \\ \midrule
|
||||||
|
\texttt{.} & \texttt{010101} \\ \midrule
|
||||||
|
\texttt{,} & \texttt{110011} \\ \midrule
|
||||||
|
\texttt{:} & \texttt{111000} \\ \midrule
|
||||||
|
\texttt{;} & \texttt{101010} \\ \midrule
|
||||||
|
\texttt{?} & \texttt{001100} \\ \midrule
|
||||||
|
\texttt{!} & \texttt{101011} \\ \midrule
|
||||||
|
\texttt{-} & \texttt{100001} \\ \midrule
|
||||||
|
\texttt{\_} & \texttt{001101} \\ \midrule
|
||||||
|
\texttt{(} & \texttt{10110} \\ \midrule
|
||||||
|
\texttt{)} & \texttt{101101} \\ \midrule
|
||||||
|
\texttt{=} & \texttt{10001} \\ \midrule
|
||||||
|
\texttt{+} & \texttt{01010} \\ \midrule
|
||||||
|
\texttt{/} & \texttt{10010} \\ \midrule
|
||||||
|
\texttt{@} & \texttt{011010} \\ \midrule
|
||||||
|
\texttt{'} & \texttt{011110} \\ \midrule
|
||||||
|
\texttt{\$} & \texttt{0001001} \\ \midrule
|
||||||
|
\texttt{LETTERSPACE} & \texttt{\#} \\ \midrule
|
||||||
|
\texttt{WORDSPACE} & \texttt{+} \\ \bottomrule
|
||||||
|
\end{longtabu}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
\begin{flushright}
|
||||||
|
\small{CC-BY-SA 4.0\\
|
||||||
|
Marcel Kapfer\\
|
||||||
|
2016}
|
||||||
|
\end{flushright}
|
||||||
|
|
||||||
|
\end{document}
|
Reference in a new issue