-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgraphics.tex
40 lines (33 loc) · 893 Bytes
/
pgraphics.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
\documentclass{scrartcl}
\input{mathead.tex}
\begin{document}
\section{Aufgabe, ein Plot}
\begin{figure}
\centering
\includegraphics[width=\textwidth]{plots/plot1.pdf}
\caption{1. Grafik}
\label{fig:1}
\end{figure}
\newpage
\section{ Aufgabe, zwei Plots}
In \ref{fig:hihi} sieht man zwei schöne Graphen,
in \ref{fig:huhu} sieht man zwei hässliche Graphen
\begin{figure}
\centering
\begin{subfigure}{0.48\textwidth}
\centering
\includegraphics[height=4cm]{plots/plot2.pdf}
\caption{hihi}
\label{fig:hihi}
\end{subfigure}
\begin{subfigure}{0.48\textwidth}
\centering
\includegraphics[height= 4cm]{plots/plot3.pdf}
\caption{huhuhuhuh}
\label{fig:huhu}
\end{subfigure}
\caption{Abbildung \subref{fig:hihi}: schöne Abbildung;
Abbildung \subref{fig:huhu}: nicht so schön}
\label{fig:logos}
\end{figure}
\end{document}