summaryrefslogtreecommitdiff
path: root/main.tex
blob: 3cc581daf792c8262e92f11cc12ae02917e74dcc (plain)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
% Główne
\documentclass[12pt,a4paper]{report}
\usepackage[margin=2.5cm]{geometry}

% Język
\usepackage{polski}
\usepackage[utf8]{inputenc}
\usepackage[polish]{babel}

% AMS
\usepackage{amsmath}
\usepackage{amsfonts}
%\let\babellll\lll
%\let\lll\relax
%\usepackage{amssymb}

% Obrazki
\usepackage{graphicx}

% Podpisy
\usepackage[size=footnotesize]{caption}
\captionsetup[figure]{labelsep=period,name={Rys.}}
\captionsetup[table]{labelsep=period,name={Tab.}}

% Inne
\usepackage{multirow}
\usepackage{pbox}
\usepackage{footnote} % savenotes
\usepackage{enumitem} % \begin{itemize}[label={}]
\usepackage{hyperref}
\usepackage{pdflscape} % \begin{landscape}
\usepackage{wrapfig}
\usepackage{flafter} % magiczny pakiet, zapobiegający pojawianiu się floatów przed ich definicją

% Marka na jednostki
\newcommand*{\m}{\mathrm{m}}
\newcommand*{\mm}{\mathrm{mm}}
\newcommand*{\um}{\mathrm{\mu m}}
\newcommand*{\nm}{\mathrm{nm}}
\newcommand*{\uV}{\mathrm{\mu V}}
\newcommand*{\mV}{\mathrm{mV}}
\newcommand*{\V}{\mathrm{V}}
\newcommand*{\kV}{\mathrm{kV}}
\newcommand*{\mA}{\mathrm{mA}}
\newcommand*{\uA}{\mathrm{\mu A}}
\newcommand*{\kOhm}{\mathrm{k\Omega}}
\newcommand*{\MOhm}{\mathrm{M\Omega}}
\newcommand*{\mS}{\mathrm{mS}}
\newcommand*{\uS}{\mathrm{\mu S}}
\newcommand*{\eV}{\mathrm{eV}}
\newcommand*{\K}{\mathrm{K}}
\newcommand*{\kg}{\mathrm{kg}}
\newcommand*{\s}{\mathrm{s}}
\newcommand*{\degree}{^{\circ}}

% Inne makra
\newcommand*{\dd}{\mathrm{d}}

% Indeks
\usepackage{imakeidx}
\makeindex[intoc=true, columns=2, options=-s ingenieur.ist]

% Bibliografia
\usepackage{cite}
\usepackage[nottoc]{tocbibind}

\begin{document}
	% Strona tytułowa
	\input{00_strona_tytulowa.tex}

	% Spis treści
	\setcounter{tocdepth}{1}
	\tableofcontents

	% Wstęp
	\input{09_wstep.tex}

	% Wstęp teoretyczny
	\input{10_teoria.tex}

	% Współczynniki oddawania barw
	\input{20_cri.tex}

	% Sprawdzenie wyników
	\input{30_literatura.tex}
	\input{35_pomiary.tex}

	% Podsumowanie
	\input{89_wnioski.tex}

	% Dodatki
	\appendix

	% Dodatek: Spis wzorów
	\input{90_wzory.tex}

	% Indeks
	\clearpage
	\printindex

	% Lista rysunków
	\listoffigures

	% Bibliografia
	\bibliographystyle{ieeetr}
	\bibliography{main.bib}
\end{document}