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
|
\documentclass[9pt]{article}
\usepackage{DejaVuSerifCondensed}
\usepackage{DejaVuSansMono}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[swedish]{babel}
\usepackage[margin=1mm,landscape]{geometry}
\usepackage{graphicx}
\usepackage{FixSmallCaps}
\setlength\parindent{0mm}
\geometry{
papersize={52mm, 90mm},
left=5mm,
right=5mm,
top=5mm,
bottom=5mm
}
\begin{document}
% Front
\begin{minipage}[tl]{.6\textwidth}
\footnotesize
\texttt{Gustav Hartvigsson\\
Skotsteksgatan 1\\
452 38 Strömstad\\
\textsc{Sweden}\\
\\
\\
\\
+46 (0)70 394 1996\\
+46 (0)526 615 27\\
\\
gustav.hartvigsson@gmail.com\\
\\
linkedin.com/in/GustavHartvigsson}
\vfill
\end{minipage}
\begin{minipage}[tr]{0.4\textwidth}
\hfill
\includegraphics[width=\textwidth, keepaspectratio]{bild2_cutout}
\end{minipage}
\newpage
%back
\begin{minipage}{\textheight}
\centering
\includegraphics[height=\textheight, keepaspectratio]{VCardQR}
\end{minipage}
\begin{minipage}{0.45\textwidth}
\centering
\rule{\textwidth}{1pt}
\rule{\textwidth}{1pt}
\rule{\textwidth}{1pt}
\rule{\textwidth}{1pt}
\rule{\textwidth}{1pt}
\rule{\textwidth}{1pt}
\rule{\textwidth}{1pt}
\rule{\textwidth}{1pt}
\rule{\textwidth}{1pt}
\end{minipage}
\end{document}
|