2048.tex 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. \documentclass[a4paper]{scrartcl}
  2. \usepackage{amssymb, amsmath} % needed for math
  3. \usepackage[utf8]{inputenc} % this is needed for umlauts
  4. \usepackage[english]{babel} % this is needed for umlauts
  5. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  6. \usepackage[margin=2.5cm]{geometry} %layout
  7. \usepackage{hyperref} % links im text
  8. \usepackage{parskip}
  9. \usepackage{csquotes}
  10. \title{The Game '2048'}
  11. \author{Martin Thoma}
  12. \hypersetup{
  13. pdfauthor = {Martin Thoma},
  14. pdfkeywords = {Game, combinatorics, 2048},
  15. pdftitle = {The Game '2048'}
  16. }
  17. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  18. % Begin document %
  19. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  20. \begin{document}
  21. \maketitle
  22. \begin{abstract}
  23. \enquote{2048} is a single-player game with random elements and a score.
  24. \end{abstract}
  25. \section{Rules of '2048'}
  26. \enquote{2048} is played on a $4 \times 4$ grid.
  27. \section{Best reachable highscore}
  28. \section{Algorithms}
  29. \section{Related}
  30. \begin{itemize}
  31. \item \url{http://math.stackexchange.com/q/716469/6876}
  32. \item
  33. \end{itemize}
  34. \end{document}