-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrcetitlepage.sty
56 lines (50 loc) · 1.38 KB
/
wrcetitlepage.sty
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
\RequirePackage{graphicx}
\newcommand{\thecoursenumber}{EW495 or EW496}
\newcommand{\coursenumber}[1]{\renewcommand{\thecoursenumber}{#1}}
\newcommand{\thestudent}{MIDN 1/c Student}
\newcommand{\student}[1]{\renewcommand{\thestudent}{#1}}
\newcommand{\theadvisor}{Assistant Professor Indiana Jones}
\newcommand{\advisor}[1]{\renewcommand{\theadvisor}{#1}}
\newcommand{\thedeptchair}{Professor J. A. Piepmeier}
\newcommand{\deptchair}[1]{\renewcommand{\thedeptchair}{#1}}
\newcommand{\thecoverpicture}{\includegraphics[width=0.75\columnwidth]{RCE-logo-01.png}}
\newcommand{\coverpicture}[1]{\renewcommand{\thecoverpicture}{#1}}
\newcommand{\maketitlepage}{
\onecolumn
\begin{figure*}[p]
\makeatletter
\begin{center}
\noindent {\Huge \@title}\\
\vspace{2em}
\noindent \textbf{\thecoursenumber\ Final Report}\\
\vspace{2em}
\thecoverpicture\\
\vspace{2em}
\noindent \textbf{Authors:} \thestudent\\
\noindent \textbf{Date:} \@date\\
\end{center}
\end{figure*}
\begin{table*}[p]
\begin{center}
\begin{tabular}{p{4in}p{1.5in}}
\textbf{Advisor:} \theadvisor & \\
& \\
& \\
& \\
\makebox[4in]{\hrulefill} & \makebox[1.5in]{\hrulefill} \\
\setlength\extrarowheight{0pt}
Signature & Date \\
& \\
\textbf{Department Chair:} \thedeptchair & \\
& \\
& \\
& \\
\makebox[4in]{\hrulefill} & \makebox[1.5in]{\hrulefill} \\
Signature & Date \\
\end{tabular}
\end{center}
\end{table*}
\twocolumn
%\clearpage
\makeatother
}