summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/gradstudentresume
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-08-18 23:05:57 +0000
committerKarl Berry <karl@freefriends.org>2015-08-18 23:05:57 +0000
commitdad921b94089fef4e0951ae3b3b319795a63d34b (patch)
treee9ea3e05c1243a5eec30328e6f5c06cc85559cd8 /Master/texmf-dist/tex/latex/gradstudentresume
parent327edc933ae08980d1ddfdf5348f969a8b09d692 (diff)
gradstudentresume (18aug15)
git-svn-id: svn://tug.org/texlive/trunk@38147 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/gradstudentresume')
-rw-r--r--Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls42
1 files changed, 23 insertions, 19 deletions
diff --git a/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls b/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls
index 7b0731552cf..1bf7086da8f 100644
--- a/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls
+++ b/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls
@@ -1,22 +1,36 @@
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%% Graduate Student Sample CV Template %%%%%%%%%
%%%%%%%%%%%% Written By: Anagha Kumar %%%%%%%%%%%%
% I tried to write a generic resume template for graduate students. Naturally,
-% I tried to make it as generic as possible since I cannot possibly come up with every section and subsection
+% I tried to make it as flexible as possible since I cannot possibly come up with every section and subsection
% imaginable. Regardless, this should serve as a helpful template for those graduate students writing an
-% academic CV. The goal is to create a flexible template that can be customized based on each specific
+% academic CV. The goal was to create a template that can be customized based on each specific
% individual's needs. I have uploaded a generic CV as a demonstration of how this document class works.
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{gradstudentresume}
\LoadClassWithOptions{article}
\RequirePackage{anysize}
+\RequirePackage{hyperref}
% it goes left, right, top, bottom
\marginsize{0.75in}{0.75in}{0in}{1in}
\pagestyle{plain} % because I think pages on CVs should be numbered
+\newenvironment{info}
+{\begin{center}}
+{\end{center}
+\largespace}
+
+
+\newcommand{\contact}[5] {{\Large{\sc{#1}}} \\ \normalsize {\textit{Address}: {#2} \\ \textit{Telephone}: {#3} \\ \textit{Email}: {#4} \\ \textit{Website}: {#5}}}
+% The parameters are name, address, telephone number, email, and website.
+
+\newenvironment{wrapped}
+{ \begin{itemize}
+ \setlength{\itemsep}{0pt}}
+{ \end{itemize}}
+
\newcommand{\sectionrule}{\noindent\hfil\rule{\textwidth}{.6pt}\hfil
\vspace{2mm}}
@@ -25,26 +39,16 @@
\newcommand{\medspace}{\vspace{3mm}}
\newcommand{\largespace}{\vspace{5mm}}
-\newcommand{\degree}[4]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4}}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\newcommand{\undergrad}[7]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4}\\ Honors Thesis: {#5} \\Advisor: {#6} \\ Graduation Honors: {#7}}
+ \newcommand{\grad}[6]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4} \\ Thesis: {#5} \\ Advisor: {#6}}
+
\newcommand{\sectionheading}[1]{\noindent{\large{\sc{#1}}} \\ \sectionrule}
\newcommand{\subsectionheading}[1]{\noindent {\sc{#1}} \vspace{1mm}}
\newcommand{\subsubsectionheading}[3]{\noindent\textbf{#1} \hfill{#2}\\ \textit{#3}}
-\newenvironment{wrapped}
-{ \begin{itemize}
- \setlength{\itemsep}{0pt}}
-{ \end{itemize}}
-
-\newcommand{\contact}[5] {{\Large{\sc{#1}}} \\ \normalsize {\textit{Address}: {#2} \\ \textit{Telephone}: {#3} \\ \textit{Email}: {#4} \\ \textit{Website}: {#5}}}
-% The parameters are name, address, telephone number, email, and website.
-
-\newenvironment{info}
-{\begin{center}}
-{\end{center}
-\vspace{5mm}}
-
\newcommand{\reference}[7]{\textbf{#1} \\ {#2} \hfill{Telephone: {#3}} \\ {#4} \hfill{Email: {#5}} \\ {#6} \\ {#7}}
% The parameters are name, title, telephone number, department, email, school, and address line 2.
-
-
+\newcommand{\paper}[7] {{#1} ({#2}). {#3}. \textit{#4, #5} ({#6}), {#7}.}
+% 1 is authors, 2 is year, 3 is title, 4 is journal, 5 is volume, 6 is number, 7 is pages. This is useful since you don't need to type in \textit{} etc. repeatedly when typing up your resume. Grad students with many publications will especially appreciate this feature.