Ein Roboter mit bürstenlosem Antrieb, differenzial und NRF24L01 Funk. Großflächig gebaut um ein großes Solarpanel aufzunehmen. https://gitlab.informatik.hs-fulda.de/fdai5253/roboter
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
4.4 KiB

  1. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  2. % Lachaise Assignment
  3. % LaTeX Template
  4. % Version 1.0 (26/6/2018)
  5. %
  6. % This template originates from:
  7. % http://www.LaTeXTemplates.com
  8. %
  9. % Authors:
  10. % Marion Lachaise & François Févotte
  11. % Vel (vel@LaTeXTemplates.com)
  12. %
  13. % License:
  14. % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
  15. %
  16. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  17. %----------------------------------------------------------------------------------------
  18. % PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
  19. %----------------------------------------------------------------------------------------
  20. \documentclass{article}
  21. \input{structure.tex} % Include the file specifying the document structure and custom commands
  22. %----------------------------------------------------------------------------------------
  23. % INFORMATION
  24. %----------------------------------------------------------------------------------------
  25. \title{Open Source Roboter Plattform} % Title
  26. \author{Lukas Reichwein\\ Yves Ehrlich\\ Nick Gnoevoj}
  27. \date{University of Applied Science Fulda --- \today} % University, school and/or department name(s) and a date
  28. %----------------------------------------------------------------------------------------
  29. \begin{document}
  30. \maketitle % Print the title
  31. \tableofcontents % Inhaltsverzeichniss, Achtung zweimal Compilerien!
  32. \newpage
  33. %----------------------------------------------------------------------------------------
  34. % INTRODUCTION
  35. %----------------------------------------------------------------------------------------
  36. \section*{Vorwort} % Unnumbered section
  37. Motivation, Basis, Ziel des Projektes.
  38. \newpage
  39. %----------------------------------------------------------------------------------------
  40. % Latex Beispeiele
  41. %----------------------------------------------------------------------------------------
  42. \section{Beispiele für Spezielle LaTeX Strukturen}
  43. \begin{info} % Information block
  44. benutze den Info block um wichtige informationen hervorzuheben.
  45. \end{info}
  46. %----------------------------------------------------------------------------------------
  47. % Beispiel für Pseudo Code.
  48. %----------------------------------------------------------------------------------------
  49. \begin{center}
  50. \begin{minipage}{0.5\linewidth} % Adjust the minipage width to accomodate for the length of algorithm lines
  51. \begin{algorithm}[H]
  52. \KwIn{$(a, b)$, two floating-point numbers} % Algorithm inputs
  53. \KwResult{$(c, d)$, such that $a+b = c + d$} % Algorithm outputs/results
  54. \medskip
  55. \If{$\vert b\vert > \vert a\vert$}{
  56. exchange $a$ and $b$ \;
  57. }
  58. $c \leftarrow a + b$ \;
  59. $z \leftarrow c - a$ \;
  60. $d \leftarrow b - z$ \;
  61. {\bf return} $(c,d)$ \;
  62. \caption{\texttt{FastTwoSum}} % Algorithm name
  63. \label{alg:fastTwoSum} % optional label to refer to
  64. \end{algorithm}
  65. \end{minipage}
  66. \end{center}
  67. %----------------------------------------------------------------------------------------
  68. % Beispiel für Code Snippets.
  69. %----------------------------------------------------------------------------------------
  70. % File contents
  71. \begin{file}[hello.py]
  72. \begin{lstlisting}[language=Python]
  73. #! /usr/bin/python
  74. import sys
  75. sys.stdout.write("Hello World!\n")
  76. \end{lstlisting}
  77. \end{file}
  78. %----------------------------------------------------------------------------------------
  79. % Example for Console Prints (can also be usefull for displaying Serial monitor)
  80. %----------------------------------------------------------------------------------------
  81. % Command-line "screenshot"
  82. \begin{commandline}
  83. \begin{verbatim}
  84. $ chmod +x hello.py
  85. $ ./hello.py
  86. Hello World!S
  87. \end{verbatim}
  88. \end{commandline}
  89. % Warning text, with a custom title
  90. \begin{warn}[Notice:]
  91. Warungen könnten auch nützlich sein, immerhin braucht der RF24 3.3V und nicht 5V
  92. \end{warn}
  93. %----------------------------------------------------------------------------------------
  94. % Beispiel für ein Bild.
  95. %----------------------------------------------------------------------------------------
  96. \begin{figure}[h]
  97. \includegraphics[width=8cm]{fish.png}
  98. \centering
  99. \end{figure}
  100. %----------------------------------------------------------------------------------------
  101. % BIBLIOGRAPHY
  102. %----------------------------------------------------------------------------------------
  103. \bibliographystyle{unsrt}
  104. \bibliography{sample.bib}
  105. %----------------------------------------------------------------------------------------
  106. \end{document}