THMMY's "Optimization Techniques" course assignments.

91 lines
2.0 KiB

  1. % !TEX TS-program = xelatex
  2. % !TEX encoding = UTF-8 Unicode
  3. % !TEX spellcheck = el-GR
  4. %
  5. % Optimization techniques project report
  6. %
  7. % Requires compilation with pdfLaTeX or XeLaTeX
  8. %
  9. % authors:
  10. % Χρήστος Χουτουρίδης ΑΕΜ 8997
  11. % cchoutou@ece.auth.gr
  12. %
  13. % Options:
  14. %
  15. % 1) mainlang=<language>
  16. % Default: english
  17. % Set the default language of the document which affects hyphenations,
  18. % localization (section, dates, etc...)
  19. %
  20. % example: \documentclass[mainlang=greek]{AUThReport}
  21. %
  22. % 2) <language>
  23. % Add hyphenation and typesetting support for other languages
  24. % Currently supports: english, greek, german, frenc
  25. %
  26. % example: \documentclass[english, greek]{AUThReport}
  27. %
  28. % 3) short: Requests a shorter title for the document
  29. % Default: no short
  30. %
  31. % example: \documentclass[short]{AUThReport}
  32. %
  33. \documentclass[a4paper, 11pt, mainlang=greek, english]{AUThReport}
  34. \CurrentDate{\today}
  35. % Document setup
  36. %---------------------------------
  37. % \WorkGroup{Ομάδα Χ}
  38. \AuthorName{Χρήστος Χουτουρίδης}
  39. \AuthorMail{cchoutou@ece.auth.gr}
  40. \AuthorAEM{8997}
  41. %\CoAuthorName{Όνομα Επίθετο}
  42. %\CoAuthorAEM{AEM}
  43. %\CoAuthorMail{xxx@ece.auth.gr}
  44. \DocTitle{Project: Γενετικοί αλγόριθμοι}
  45. \DocSubTitle{Ελαχιστοποίηση συνάρτησης πολλών μεταβλητών}
  46. \Department{Τμήμα ΗΜΜΥ. Τομέας Ηλεκτρονικής}
  47. \ClassName{Τεχνικές Βελτιστοποίησης}
  48. %
  49. \InstructorName{Γ. Ροβιθάκης}
  50. \InstructorMail{rovithak@auth.gr}
  51. \CoInstructorName{Θ. Αφορόζη}
  52. \CoInstructorMail{taforozi@ece.auth.gr}
  53. % Local package requirements
  54. %---------------------------------
  55. \usepackage{enumitem}
  56. \usepackage{tabularx}
  57. \usepackage{array}
  58. \usepackage{multirow}
  59. \usepackage{float}
  60. \usepackage{xcolor}
  61. \usepackage{soul}
  62. \usepackage{amsmath}
  63. \usepackage{footnote}
  64. \usepackage{footmisc}
  65. \begin{document}
  66. \InsertTitle
  67. %\tableofcontents
  68. \section{Εισαγωγή}
  69. Η παρούσα εργασία αφορά ...
  70. \end{document}