Added Project and Report

This commit is contained in:
elvis
2024-07-30 14:43:25 +02:00
parent c828453e94
commit 3ad6f7f86f
311 changed files with 13490 additions and 3280 deletions

102
Report/auto/main.el Normal file
View File

@ -0,0 +1,102 @@
;; -*- lexical-binding: t; -*-
(TeX-add-style-hook
"main"
(lambda ()
(setq TeX-command-extra-options
"-shell-escape")
(TeX-add-to-alist 'LaTeX-provided-class-options
'(("report" "12pt")))
(TeX-add-to-alist 'LaTeX-provided-package-options
'(("geometry" "headheight=20pt" "centering") ("inputenc" "utf8") ("babel" "english") ("scrlayer-scrpage" "") ("biblatex" "backend=biber" "style=ieee" "sorting=ynt") ("import" "") ("graphicx" "") ("float" "") ("amssymb" "") ("amsmath" "") ("tabularray" "") ("booktabs" "") ("mathrsfs" "") ("mathtools" "") ("algpseudocode" "") ("amsthm" "") ("thmtools" "") ("pgfplots" "") ("tikz" "") ("enumitem" "") ("color" "") ("xcolor" "") ("colortbl" "") ("makecell" "") ("cancel" "") ("pgfornament" "") ("multicol" "") ("subcaption" "") ("bold-extra" "") ("csquotes" "") ("hyperref" "hidelinks") ("bookmark" "") ("algorithm2e" "ruled" "vlined" "linesnumbered") ("titlesec" "") ("setspace" "")))
(add-to-list 'LaTeX-verbatim-environments-local "minted")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "href")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
(TeX-run-style-hooks
"latex2e"
"(1) - introduction/introduction"
"(2) - problem definition/problem definition"
"(3) - algorithms/algorithms"
"(4) - experiments/experiments"
"(6) - conclusion/conclusion"
"(7) - proofs/proofs"
"report"
"rep12"
"geometry"
"inputenc"
"babel"
"scrlayer-scrpage"
"biblatex"
"import"
"graphicx"
"float"
"amssymb"
"amsmath"
"tabularray"
"booktabs"
"mathrsfs"
"mathtools"
"algpseudocode"
"amsthm"
"thmtools"
"pgfplots"
"tikz"
"enumitem"
"color"
"xcolor"
"colortbl"
"makecell"
"cancel"
"pgfornament"
"multicol"
"subcaption"
"bold-extra"
"csquotes"
"hyperref"
"bookmark"
"algorithm2e"
"titlesec"
"setspace")
(TeX-add-symbols
'("ieb" ["argument"] 1)
'("thend" 1)
'("norm" 1)
'("vec" 1)
"zerodisplayskips"
"lgt"
"gry"
"rd"
"logoA"
"smallLogoA"
"course"
"assignment"
"authors"
"emails"
"universityA"
"academicYear"
"department")
(LaTeX-add-environments
"olditemize")
(LaTeX-add-bibliographies
"document")
(LaTeX-add-thmtools-declaretheoremstyles
"steo"
"slemma"
"sdef"
"sprf")
(LaTeX-add-thmtools-declaretheorems
"mtheo"
"mlemma"
"mdef"
"mproof")
(LaTeX-add-color-definecolors
"red"
"lightgreen"
"gray"))
:latex)