forked from LarsGavris/analysis3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis_3_sty.sty
More file actions
94 lines (73 loc) · 2.54 KB
/
analysis_3_sty.sty
File metadata and controls
94 lines (73 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
\ProvidesPackage{analysis_3_sty}
%% packages
\usepackage[a4paper,hcentering,bottom=4cm,headheight=3\baselineskip]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[intlimits]{amsmath} % optn intlimits leads to limits above and below integral symbol
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{mdframed}
\usepackage{trfsigns} % Symbols for Transformations \laplace \Laplace \fourier \Fourier, \e and \im
\usepackage{cancel}
\usepackage{pgfplots}
\pgfplotsset{width=7cm,compat=1.5.1}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{graphicx}
\usepackage[explicit]{titlesec}
\usepackage{color}
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{float}
\usepackage{enumitem}
\usepackage{bm}
\renewcommand{\thechapter}{\Roman{chapter}}
\titleformat{\chapter}{\Large\bfseries}{}{0em}{\hspace{-0.4pt}\Large \thechapter\hspace{0.6em} #1}
\titleformat{\section}{\Large\bfseries}{}{0em}{#1\ \thesection}
\newmdtheoremenv{framed}{Theorem}
\newtheoremstyle{big}
{} % Space above
{} % Space below
{} % Body font
{} % Indent amount
{\bfseries} % Theorem head font
{} % Punctuation after theorem head
{\newline} % Space after theorem head
{\thmname{#1}\thmnumber{ \thechapter.#2}\thmnote{ (#3)}} % Theorem head spec (can be left empty, meaning `normal')
\newtheoremstyle{small}
{} % Space above
{} % Space below
{} % Body font
{} % Indent amount
{\bfseries} % Theorem head font
{} % Punctuation after theorem head
{\newline} % Space after theorem head
{\thmname{#1}\thmnote{ (#3)}} % Theorem head spec (can be left empty, meaning `normal')
\newcounter{theoremCounter}[chapter]
\theoremstyle{big}
\newtheorem{theo_theorem}[theoremCounter]{Satz}
\newtheorem{theo_definition}[theoremCounter]{Def.}
\newtheorem{theo_lemma}[theoremCounter]{Lemma}
\newtheorem{theo_proposition}[theoremCounter]{Proposition}
\theoremstyle{small}
\newtheorem{example}{Bsp.:}
\newtheorem{remark}{Bem.:}
\newtheorem{notation}{Notation:}
\newtheorem{goal}{Ziel:}
\newtheorem{goals}{Ziele:}
\renewcommand{\labelitemi}{$-$}
\newcommand{\sidenote}[2]{\hfill #1\par\hfill #2}
\newcommand{\script}[1]{\mathcal{#1}}
\newenvironment{definition}
{\begin{framed}\begin{theo_definition}}
{\end{theo_definition}\end{framed}}
\newenvironment{theorem}
{\begin{framed}\begin{theo_theorem}}
{\end{theo_theorem}\end{framed}}
\newenvironment{lemma}
{\begin{framed}\begin{theo_lemma}}
{\end{theo_lemma}\end{framed}}
\newenvironment{proposition}
{\begin{framed}\begin{theo_proposition}}
{\end{theo_proposition}\end{framed}}