-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExamples.tex
130 lines (112 loc) · 3.63 KB
/
Examples.tex
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
% WZOR PISANIA TEKSTU CIAGLEGO
% \par -> tekst zaczyna sie od akapitu (wciecia)
\par Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
\par The sixth and last chapter summarizes the whole work, indicates elements for improvement and opportunities for further development.
\newline
\newline %wymuszona przerwa (enter)
\par Lorem ipsum dolor sit amet.
\textit{Internet of Things}) %kursywa
\textbf{UHF} %wytluszczenie
\cite{bibelment} %cytowanie elementu bibliografii bibelement
\ref{figure10} % odwolanie sie do elementu figure10
\eqref{xx} % odwolanie sie do rownania xx
% WZOR DODAWANIA OBRAZKA - w nawiasach kwadratowych, np. [H] formatowanie położenia
\begin{figure}[H]
\centering
\includegraphics[height=3cm]{Karulauk.jpg}
\caption{Obraz numer 2}
\label{figure:example1}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics[height=3cm]{Karulauk.jpg}
\caption{Obraz numer 10}
\label{figure10}
\end{figure}
% DWA OBRAZKI W JEDNEJ LINII OBOK SIEBIE
\begin{figure}[H]
\centering
\begin{subfigure}[H]{0.495\textwidth}
\includegraphics[width=\textwidth]{subfigure1.png}
\caption{subfigure caption 1}
\label{fig:subfig1}
\end{subfigure}
\begin{subfigure}[H]{0.495\textwidth}
\includegraphics[width=\textwidth]{subfigure2.png}
\caption{subfigure caption 2}
\label{fig:subfig2}
\end{subfigure}
\caption{overall caption}
\label{fig}
\end{figure}
% WZOR DODAWANIA ROWNAN:
\begin{equation} \label{mc2}
E = mc^2
\end{equation}
\begin{equation} \label{beta}
\beta = \omega\sqrt{\mu\varepsilon}
\end{equation}
Z równania \eqref{mc2} i \eqref{beta}, po kilku prostych przekształceniach, otrzymujemy równanie \eqref{kkk}.
\begin{equation} \label{kkk}
\beta = \frac{\omega}{c}
\end{equation}
\begin{equation} \label{eqCzulosc}
\gamma = \frac{U_{wy}}{P_{we}}
\end{equation}
\begin{equation} \label{test}
\boldmath
z = \overbrace{
\underbrace{x}_\text{real} + i
\underbrace{y}_\text{imaginary}
}^\text{complex number}
\end{equation}
\begin{equation} \label{eqConj1}
Z_{in} = \left\{
\begin{array}{lr}
R_{in} + j X_{in} & \text{gdy}\quad f = f_1\\
R_{in} - j X_{in} & \text{gdy}\quad f = f_2
\end{array}
\right.
\end{equation}
% WZOR LISTY WYPUNKTOWANEJ
\begin{itemize}
\item{first element}
\item{second element}
\item{third element}
\item{fourth element}
\end{itemize}
% WZOR TABELI
\begin{table}[H]
\centering
\caption{Porównanie parametrów różnych diod}
\label{Tab1}
\small
\begin{tabularx}{\textwidth}{ |X|X|X|X|X| }
\hline
Dioda & Typ & Napięcie\newline$Vt\:[mV]$ & Rezystancja $Rs\:[Ω]$& Pojemność $Cj\:[pF]$ \\
\hline
HSMS-285x \cite{hsms285x} & Schottky'ego & 100 ÷ 150 & 25 & 0,18 \\
\hline
SMS7630 \cite{sms7630} & Schottky'ego & 60 ÷ 120 & 20 & 0,14 \\
\hline
1N4148 \cite{1n4148} & krzemowa pn & 500 ÷ 600 & 0,5 & 1 ÷ 4 \\
\hline
\end{tabularx}
\end{table}
\begin{table}[H]
\centering
\caption{Wymiary układu}
\label{TabWymiary}
\small
\begin{tabularx}{\textwidth}{ |X|X|X|X|X|X|}
\hline
Przenikalność względna $\varepsilon_r$ & $W_{50}$ [mm] & $A_{S}$ [°]& $L_S$ [mm]& $W_X$ [mm] & $L_X$ [mm] \\
\hline
4,3 & 1,95 & 25 & 21 & 0,33 & 36\\
\hline
4,5 & 1,88 & 25 & 20,4 & 0,33 & 35,4\\
\hline
4,7 & 1,82 & 25 & 19,8 & 0,33 & 35,0\\
\hline
\end{tabularx}
\end{table}