-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.tex
96 lines (89 loc) · 3.48 KB
/
template.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
\documentclass[12pt, letterpaper]{article}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage[left=10mm,right=10mm,top=5mm,bottom=5mm,paper=a4paper]{geometry}
\usepackage{multirow}
\usepackage{caption} % Added for \captionof
\usepackage{xcolor}
\usepackage{fontspec}
\setmainfont{Tahoma}
\usepackage[utf8]{inputenc}
\usepackage{enumitem}
\setlength{\fboxsep}{0pt} % <-- Add this line
\captionsetup[subfigure]{labelformat=empty}
\begin{document}
\begin{figure}[h]
\centering
\fbox{\parbox{1\linewidth}{
\vspace{5mm}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=0.37\textheight, angle=#angle1#]{#photopath1#}
\captionsetup{width=0.8\linewidth}
\caption{#CAPTION1#}
\end{subfigure}
\vspace{\baselineskip}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=0.37\textheight, angle=#angle2#]{#photopath2#}
\captionsetup{width=0.8\linewidth}
\caption{#CAPTION2#}
\end{subfigure}
\vspace{1mm}
\hrule
\begin{minipage}[c][4.5cm][t]{1\textwidth}
\begin{minipage}[t][2cm][t]{0.5\textwidth}
\vspace{2mm}
\centering
\textbf{\small{NOTES:}} \\
\raggedright
\begin{itemize}
\item \footnotesize{#notes#}
\end{itemize}
\end{minipage}
\vrule
\begin{minipage}[t][2cm][t]{0.5\textwidth}
\vspace{2mm}
\hspace{2mm}
\raggedright
\text{\small{\textcolor[rgb]{0.1255,0.3058,0.4745}{Client:}} \\
\hspace{6mm} \footnotesize{#client#}}
\end{minipage}
\hrule
\begin{minipage}[c][2.5cm][c]{0.5\textwidth}
\centering
\includegraphics[height=2.3cm]{../logo/gwp.png}
\end{minipage}
\vrule
\begin{minipage}[c][2.5cm][c]{0.495\textwidth}
\begin{minipage}[c][1.3cm][c]{1\textwidth}
\vspace{2mm}
\hspace*{2mm}
\raggedright
\text{\small{\textcolor[rgb]{0.1255,0.3058,0.4745}{Project: }} \\
\hspace{6mm} \footnotesize{#project#}}
\end{minipage}
\hrule
\begin{minipage}[c][1.2cm][t]{1\textwidth}
\begin{minipage}[c][1.2cm][t]{0.7\textwidth}
\vspace{1mm}
\hspace{2mm}
\raggedright
\text{\small{\textcolor[rgb]{0.1255,0.3058,0.4745}{Drawing No}} \\
\hspace{6mm} \footnotesize{#appendix#}}
\end{minipage}
\vline
\begin{minipage}[c][1.2cm][t]{0.2\textwidth}
\vspace{1mm}
\hspace{2mm}
\raggedright
\text{\small{\textcolor[rgb]{0.1255,0.3058,0.4745}{Version}} \\
\hspace{12mm} \footnotesize{a}}
\end{minipage}
\end{minipage}
\end{minipage}
\end{minipage}
}}
\end{figure}
\clearpage
\end{document}