blob: 20981848c53c86e2887cec038fa29f165ae1d524 (
plain) (
blame)
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
|
%! TEX root = ../../facharbeit.tex
% LTeX: language=de-DE
% FIXME: In dem Header wird aus dem 'ß' ein 'SS'. Das liegt vmtl. an dem erzwungenen
% Uppercase <2024-04-27>
\onecolumn
\chapter{Bilder in voller Größe}
\ExplSyntaxOn
\NewDocumentCommand {\figureBig} { v v +v }
{
\begin{figure}[h]
\centering
\makebox[\textwidth]{
\includegraphics[width=0.9\paperwidth]{#1}
}
\caption{#3}
\label[Bild]{#2}
\end{figure}
}
\ExplSyntaxOff
\figureBig{figures/own/a.jpg}{fig:BildA}{Aufgenommenes Bild A}
\figureBig{figures/own/b.jpg}{fig:BildB}{Aufgenommenes Bild B}
\figureBig{figures/own/c.jpg}{fig:BildC}{Aufgenommenes Bild C}
\figureBig{figures/own/d.jpg}{fig:BildD}{Aufgenommenes Bild D}
\begin{figure}[h!]
\centering
\makebox[\textwidth]{
\begin{annotationimage}[]{width=0.9\textwidth}{figures/3d_raman_spectrometer_model.png}
\draw[annotation left = {Küvette at 0.8}] to (0.39,0.45);
\draw[annotation above = {Laser at 0.1}] to (0.2,0.6);
\draw[annotation below = {Kollimations Linse at 0.1}] to (0.42,0.5);
\draw[annotation below = {Plano-konvexe Fokus Linse at 0.9}] to (0.64,0.6);
\draw[annotation above = {Smartphone-Halterung at 0.6}] to (0.7,0.7);
\draw[annotation above = {abnehmbarer Gitter Halter at 0.9}] to (0.76,0.7);
\draw[annotation below = {Schiene für Linsen/Halter at 0.5}] to (0.6,0.34);
\end{annotationimage}
}
\caption{\Vref{fig:threeDModel} in voller Größe.}
\label{fig:threeDModelBigger}
\end{figure}
\begin{figure}[h!]
\centering
\makebox[\textwidth]{
\includegraphics[width=0.9\paperwidth]{figures/raman_spectromter_built.jpg}
}
\caption{
\Vref{fig:builtModel} in voller Größe.
}\label{fig:builtModelBigger}
\end{figure}
\twocolumn
|