From b2ea7dce029df59615ef6bd98e335672bd219171 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Sun, 20 Sep 2015 22:31:26 +0000 Subject: gradstudentresume (20sep15) git-svn-id: svn://tug.org/texlive/trunk@38417 c570f23f-e606-0410-a88d-b1316a301751 --- .../doc/latex/gradstudentresume/README.txt | 121 ++++++++++++++++---- .../doc/latex/gradstudentresume/example.tex | 127 +++++++++++++++++++++ .../doc/latex/gradstudentresume/resume2015.pdf | Bin 79829 -> 0 bytes .../doc/latex/gradstudentresume/resume2015.tex | 121 -------------------- .../latex/gradstudentresume/gradstudentresume.cls | 99 ++++++++++++---- 5 files changed, 299 insertions(+), 169 deletions(-) create mode 100644 Master/texmf-dist/doc/latex/gradstudentresume/example.tex delete mode 100644 Master/texmf-dist/doc/latex/gradstudentresume/resume2015.pdf delete mode 100644 Master/texmf-dist/doc/latex/gradstudentresume/resume2015.tex diff --git a/Master/texmf-dist/doc/latex/gradstudentresume/README.txt b/Master/texmf-dist/doc/latex/gradstudentresume/README.txt index 83778b10b8d..cf34bfb5c0e 100644 --- a/Master/texmf-dist/doc/latex/gradstudentresume/README.txt +++ b/Master/texmf-dist/doc/latex/gradstudentresume/README.txt @@ -1,48 +1,121 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%%%%%%%%% Graduate Student Sample CV Template %%%%%%%%% +%%%%%%%%% gradstudentresume %%%%%%%%%%%%%%%%%%% %%%%%%%%%%%% Written By: Anagha Kumar %%%%%%%%%%%% +%%%%%% License: The LATEX Project Public Li­cense (lp­pl1.3) %%%%%% +%%%%%% Version: 2015/09/19 %%%%%%%%%%%%%%% -% 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 -% 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 -% individual's needs. I have uploaded a generic CV as a demonstration of how this document class works. +%I tried to write a generic resume template for graduate students. Naturally, 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. I have uploaded a generic CV %as a demonstration of how this document class works. +%The purpose of this README file is to explain how this document class was constructed so that other authors %can use this as a template to design their own document classes. + +% The example.tex provides an example of how this document class can be operationalized. + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \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 +\pagestyle{plain} +%I have named this class gradstudentresume. Please save it to the same folder that your .tex file is located in %and then compile. The margins have been set as 0.75 inches for the left margin, 0.75 inches for the right %margin, 0 inches for the top margin, and 1 inch for the bottom margin. -\newcommand{\sectionrule}{\noindent\hfil\rule{\textwidth}{.6pt}\hfil -\vspace{2mm}} +Since I think pages on CVs should be numbered, I used the plain page style. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%Next, I defined my own skips. Although LaTeX has smallskip, medskip, and large skip, it is important to have %fine control over your own output. +\newcommand{\smallspace}{ +\vspace{1mm} -%% I know latex has smallskip, medskip etc. but I think it is important to have fine control over your output and define your own skips -\newcommand{\smallspace}{\vspace{1mm}} -\newcommand{\medspace}{\vspace{3mm}} -\newcommand{\largespace}{\vspace{5mm}} +} -\newcommand{\degree}[4]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4}} -\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}} +\newcommand{\medspace}{ +\vspace{3mm} + +} + + +\newcommand{\largespace}{ +\vspace{5mm} + +} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%Further, I defined a new environment called info so that users can write out their contact information at the %beginning of their CVs. + +\newenvironment{info}[4] +{\begin{center} +\Large{\sc{#1}} \\ \normalsize \textit{Address}: {#2} \\ \textit{Telephone}: {#3} \\ \textit{Email}: {#4} +\end{center}} +{\largespace + +} +% The parameters are name, address, telephone number, and email. + +%I also defined a new environment "wrapped" since I think the gap between bullet points in the itemize %environment is too large. \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. +I also defined a new section rule command. +\newcommand{\sectionrule}{\noindent\hfil\rule{\textwidth}{.6pt}\hfil +\vspace{2mm} + +} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%Below, I have defined new commands so that users can avoid the cumbersome practice of formatting each line. %Commands have the advantage that they are essentially functions that apply the same formatting in multiple %locations. +\newcommand{\undergrad}[5]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4} \\ Graduation Honors: {#5}} +\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}} +\smallspace -\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. + +\newcommand{\myname}{\textbf{Kumar, A.}} +% so that you don't have to keep typing in \textbf{your name} for every paper you cite. + +\newcommand{\presentation}[4]{{#1} \hfill{#2} \\ \textit{#3} \hfill{#4}} +% 1 is the section of the conference, 2 is the date, 3 is the conference name or school name 4 is the location + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%Below are two numbered environments. Again, defining new environments helps with formatting since users do not %need to keep repeatedly formatting items in the same manner. Notice that commands defined previously can be %used as arguments to in a new environment. + +\newenvironment{pres}[1] +{ +\textbf{#1} % name of the presentation +\begin{wrapped}} +{% use the presentation command as the argument +\end{wrapped} +\smallspace + +} + + +\newenvironment{desc}[3] +{ +\noindent\textbf{#1} \hfill{#2}\\ \textit{#3} +\begin{wrapped}} +{ +\end{wrapped} +\medspace + +} + + + + + + + + diff --git a/Master/texmf-dist/doc/latex/gradstudentresume/example.tex b/Master/texmf-dist/doc/latex/gradstudentresume/example.tex new file mode 100644 index 00000000000..859b9898c2c --- /dev/null +++ b/Master/texmf-dist/doc/latex/gradstudentresume/example.tex @@ -0,0 +1,127 @@ +\documentclass{gradstudentresume} + +\begin{document} +\begin{info}{Anagha Kumar}{1711 35th Street NW, Apartment 23, Washington DC 20007}{267-648-0887}{anaghakumar2405@gmail.com} +\end{info} + +\sectionheading{Education} +\undergrad{B.A., Mathematics (Honors)}{May 2011}{Bryn Mawr College}{Bryn Mawr, PA}{Magna Cum Laude} +\medspace + +\grad{M.S., Biostatistics}{May 2013}{The Perelman School of Medicine at the University of Pennsylvania}{Philadelphia, PA}{Lymphedema Assessment of the Breast, Arm, and Torso}{Dr. Andrea Troxel} +\medspace + +\grad{M.A., Statistics}{May 2015}{The Wharton School of the University of Pennsylvania}{Philadelphia, PA}{Statistical Analyses Using Dynamic Documents}{Dr. Dylan Small} +\largespace + + +\sectionheading{Work Experience} +\begin{desc}{Statistician - MedStar Health Research Institute}{2015-present}{Joint appointment as Statistician at the Georgetown University Hospital} +\item{Responsible for the design and analysis of statistically valid clinical trials and observational studies.} +\item{Performed sample size and power calculations, oversaw randomization schemes, and consulted on survey design.} +\item{Authored the statistical portions of manuscripts, grants, and IRB submissions.} +\end{desc} +\largespace + +\sectionheading{Publications} +\begin{itemize} +\item{\paper{Brown J.C., \myname, Cheville A.L., Tchou J.C., Troxel A.B., Harris S.R., and Schmitz K.H.}{2015}{Association between lymphedema self-care adherence and lymphedema outcomes among women with breast cancer-related lymphedema.}{Am J Phys Med Rehabil.}{94}{4}{288-96}} +\end{itemize} + +\largespace +\sectionheading{Presentations} +\subsectionheading{Invited} +\begin{pres}{Dynamic Documents: A tutorial on reproducible research tools} +\item{\presentation{Advanced Statistics for Management - STAT 701 (Guest Lecture)}{December 2015}{The Wharton School of the University of Pennsylvania}{Philadelphia, PA}} +\end{pres} +\vspace{2mm} + +\subsectionheading{Contributed} + +\begin{pres}{$^{*}$ Race or Resource?: Differences in Lymphedema Severity among Obese Breast Cancer Survivors} +\item{\presentation{Trans-disciplinary Research on Energetics \& Cancer Scientific Meeting (Poster)}{September 2015}{Fred Hutchinson Cancer Research Center}{Seattle, WA}} +\end{pres} + +\begin{pres}{Dynamic Documents: A tutorial on reproducible research tools} +\item{\presentation{Practical Computing Demonstration (Oral Presentation)}{February 2016}{Conference on Statistics in Practice}{San Diego, CA}} +\end{pres} +\vspace{2mm} + +($^{*}$: presented by a coauthor) +\largespace + +\sectionheading{Teaching} +\subsectionheading{Teaching Assistant} +\begin{desc}{Fundamentals of Biostatistics}{Spring 2013}{Professor: Dr. Jason Roy (University of Pennsylvania Department of Biostatistics)} +\item{Full semester course for 30 medical fellows and residents.} +\item{Graded homework assignments, assisted students during office hours, and served as a Stata lab instructor.} +\end{desc} + + +\begin{desc}{Concepts and Methods in Biostatistics}{Summer 2013}{Professor: Dr. Phyllis Gimotty (University of Pennsylvania Department of Biostatistics)} +\item{Summer course for 30 biomedical graduate students.} +\item{Designed and taught the curriculum for the SAS lab sessions.} +\end{desc} + +\begin{desc}{Longitudinal and Clustered Data}{Fall 2013}{Professor: Dr. Russell Localio (University of Pennsylvania Department of Biostatistics)} +\item{Full semester course for 30 students enrolled in the Masters of Science in Clinical Epidemiology program.} +\item{Graded bi-weekly homework assignments and assisted students during office hours.} +\end{desc} + +\begin{desc}{The Design and Analysis of Biomedical Experiments}{Spring 2014}{Professor: Dr. Andrea Troxel (University of Pennsylvania Department of Biostatistics)} +\item{Full semester course for 12 statistics and biostatistics graduate students.} +\item{Graded weekly homework assignments and assisted students during office hours.} +\end{desc} + +\subsectionheading{Lecturer} +\begin{desc}{Introduction to Statistics}{Fall 2015-present}{Georgetown University Hospital/Georgetown University Medical Center} +\item{Designed the curriculum and presented bi-monthly lectures to medical residents in the Plastic Surgery and Neonatology departments at Georgetown University Hospital.} +\end{desc} +\largespace + +\sectionheading{Service} +\subsectionheading{Institutional} +\begin{wrapped} +\item{Statistical Reviewer - MedStar Health Research Institute Scientific Review Board \hfill{2015 - present}} +\end{wrapped} +\largespace + +\sectionheading{Skills} +\subsectionheading{Statistical Software} +\begin{wrapped} +\item{R} +\item{PASS} +\end{wrapped} + +\subsectionheading{Markup Languages} +\begin{wrapped} +\item{\LaTeX: Advanced +\begin{wrapped} +\item{Author of the document classes \textit{gradstudentresume}: \url{https://www.ctan.org/pkg/gradstudentresume} and \textit{medstarbeamer}: \url{https://www.ctan.org/pkg/medstarbeamer}} +\end{wrapped}} +\item{Html} +\item{Markdown} +\end{wrapped} + +\subsectionheading{Languages} +\begin{wrapped} +\item{English: Native proficiency} +\item{German: Full professional proficiency} +\item{Marathi: Full professional proficiency} +\item{Hindi: Professional working proficiency} +\end{wrapped} +\largespace + +\sectionheading{References} +\begin{itemize} +\item{\reference{Dr. Paul Shaman}{Professor Emeritus of Statistics}{215-898-8749}{Department of Statistics}{shaman@wharton.upenn.edu}{The Wharton School of the University of Pennsylvania}{457 Jon M. Huntsman Hall, 3730 Walnut Street, Philadelphia, PA 19104}} +\item{\reference{Dr. Dylan Small}{Professor of Statistics}{215-573-5241}{Department of Statistics}{dsmall@wharton.upenn.edu}{The Wharton School of the University of Pennsylvania}{400 Jon M. Huntsman Hall, 3730 Walnut Street, Philadelphia, PA 19104}} +\item{\reference{Dr. Jason Roy}{Associate Professor of Biostatistics}{215-746-4225}{Department of Biostatistics}{jaroy@mail.med.upenn.edu}{The Perelman School of Medicine at The University of Pennsylvania}{629 Blockley Hall, 423 Guardian Drive, Philadelphia, PA 19104}} +\item{\reference{Dr. Sarah Ratcliffe}{Associate Professor of Biostatistics}{215-573-7398}{Department of Biostatistics}{sratclif@upenn.edu}{The Perelman School of Medicine at The University of Pennsylvania}{610 Blockley Hall, 423 Guardian Drive, Philadelphia, PA 19104}} +\item{\reference{Dr. Nawar Shara}{Director of Biostatistics}{301-560-7314}{Department of Biostatistics and Bioinformatics}{nawar.shara@medstar.net}{MedStar Health Research Institute}{6525 Belcrest Road, Suite 700 +Hyattsville, MD 20782}} +\item{\reference{Dr. Mihriye Mete}{Biostatistics Manager}{301-560-2981}{Department of Biostatistics and Bioinformatics}{Mihriye.Mete@medstar.net}{MedStar Health Research Institute}{6525 Belcrest Road, Suite 700 +Hyattsville, MD 20782}} +\end{itemize} + +\end{document} \ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/gradstudentresume/resume2015.pdf b/Master/texmf-dist/doc/latex/gradstudentresume/resume2015.pdf deleted file mode 100644 index b64bed42b40..00000000000 Binary files a/Master/texmf-dist/doc/latex/gradstudentresume/resume2015.pdf and /dev/null differ diff --git a/Master/texmf-dist/doc/latex/gradstudentresume/resume2015.tex b/Master/texmf-dist/doc/latex/gradstudentresume/resume2015.tex deleted file mode 100644 index fad423223b1..00000000000 --- a/Master/texmf-dist/doc/latex/gradstudentresume/resume2015.tex +++ /dev/null @@ -1,121 +0,0 @@ -%% I have made this example very generic - users should customize per their individual specifications - -\documentclass{gradstudentresume} - -\begin{document} -\begin{info} -\contact{Your name}{Your Address}{xxx-xxx-xxxx}{your email}{your website} -\end{info} - -\sectionheading{Education} -\degree {B.A., Mathematics (Honors)}{May 2011}{Bryn Mawr College}{Bryn Mawr, PA}\\ -Graduation Honors: Magna Cum Laude, Departmental Honors -\medspace - -\degree{Degree} {Date Conferred} {University}{Location}\\ -Thesis: XXX \\ -Advisor: XXX -\largespace - - -\sectionheading{Work Experience} -\subsubsectionheading{XXX Research Institute - Your title}{2015-present}{Department} -\begin{wrapped} -\item{List your duties here.} -\item{List your duties here.} -\end{wrapped} -\largespace - -\sectionheading{Publications} - -\subsectionheading{Published} -\begin{itemize} -\item{Manuscript 1} -\item{Manuscript 2} -\end{itemize} - -\subsectionheading{In Press} -\begin{itemize} -\item{Manuscript 1} -\end{itemize} - -\subsectionheading{Accepted} -\begin{itemize} -\item{Manuscript 1} -\end{itemize} - -\subsectionheading{Under Review} -\begin{itemize} -\item{Manuscript 1} -\item{Manuscript 2} -\end{itemize} - -\subsectionheading{Submitted} -\begin{itemize} -\item{Manuscript 1} -\item{Manuscript 2} -\end{itemize} - -\subsectionheading{In Preparation} -\begin{itemize} -\item{Manuscript 1} -\item{Manuscript 2} -\end{itemize} -\largespace - -\sectionheading{Graduate School Research Experience} - -\subsubsectionheading{Name of grant/project/study - Research Assistant}{2011 - 2014} {University of XXX} -\begin{wrapped} -\item{Analyzed data from a $2 \times 2$ factorial study examining the impact of diet and exercise in overweight breast cancer survivors with a history of lymphedema.} -\item{What else did you do...} -\end{wrapped} -\largespace - - -\sectionheading{Teaching Experience} - -\subsubsectionheading{Fundamentals of Biostatistics}{Spring 2013}{Teaching Assistant - University of XXX Department of XXX} -\begin{wrapped} -\item{Description of class - who took it, how many people were in it.} -\item{What did you do? Weekly problem sessions, office hours etc. } -\end{wrapped} -\medspace - -\subsubsectionheading{Concepts and Methods in Biostatistics}{Summer 2013}{Teaching Assistant - University of XXX Department of XXX} -\begin{wrapped} -\item{Summer course for 30 biomedical graduate students on the basics of biostatistics.} -\item{Designed and taught the curriculum for the SAS lab sessions.} -\end{wrapped} -\largespace - -\sectionheading{Presentations} -\subsectionheading{Invited} - -\subsectionheading{Contributed} - -\subsectionheading{Departmental} -\largespace - -\sectionheading{Awards and Honors} -\largespace - -\sectionheading{Service} -\subsectionheading{Referee Service} - -\subsectionheading{Professional} - -\subsectionheading{Institutional} -\begin{itemize} -\item{\subsubsectionheading{Organizer - Introduction to Statistical Software Seminar Series}{Fall 2014}{University of XXX Department of XXX}} -\item{\subsubsectionheading{Reviewer - Medical Education Research Scholars Track Review Committee}{2015-present}{University of XXX Department of XXX}} -\end{itemize} -\largespace - -\sectionheading{References} -\begin{itemize} -\item{\reference{Name of Recommender}{Title of Recommender}{xxx-xxx-xxx}{Department of Recommender}{email@xxx.edu}{University/Company}{Address}} -\item{\reference{Name of Recommender 2}{Title of Recommender 2}{xxx-xxx-xxx}{Department of Recommender}{email@xxx.edu}{University/Company}{Address}} -\end{itemize} - -\end{document} \ No newline at end of file diff --git a/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls b/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls index 7b0731552cf..1332fc58fc5 100644 --- a/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls +++ b/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls @@ -1,50 +1,101 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%%%%%%%%% Graduate Student Sample CV Template %%%%%%%%% +%%%%%%%%% gradstudentresume %%%%%%%%%%%%%%%%%%% %%%%%%%%%%%% Written By: Anagha Kumar %%%%%%%%%%%% +%%%%%% License: The LATEX Project Public Li­cense (lp­pl1.3) %%%%%% +%%%%%% Version: 2015/09/19 %%%%%%%%%%%%%%% -% 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 -% 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 -% 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 - -\newcommand{\sectionrule}{\noindent\hfil\rule{\textwidth}{.6pt}\hfil -\vspace{2mm}} +\pagestyle{plain} %% I know latex has smallskip, medskip etc. but I think it is important to have fine control over your output and define your own skips -\newcommand{\smallspace}{\vspace{1mm}} -\newcommand{\medspace}{\vspace{3mm}} -\newcommand{\largespace}{\vspace{5mm}} +\newcommand{\smallspace}{ +\vspace{1mm} + +} + + +\newcommand{\medspace}{ +\vspace{3mm} + +} -\newcommand{\degree}[4]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4}} -\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}} + +\newcommand{\largespace}{ +\vspace{5mm} + +} + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\newenvironment{info}[4] +{\begin{center} +\Large{\sc{#1}} \\ \normalsize \textit{Address}: {#2} \\ \textit{Telephone}: {#3} \\ \textit{Email}: {#4} +\end{center}} +{\largespace + +} +% The parameters are name, address, telephone number, and email. \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. +\newcommand{\sectionrule}{\noindent\hfil\rule{\textwidth}{.6pt}\hfil +\vspace{2mm} -\newenvironment{info} -{\begin{center}} -{\end{center} -\vspace{5mm}} +} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\newcommand{\undergrad}[5]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4} \\ Graduation Honors: {#5}} +\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}} +\smallspace + +} \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. + +\newcommand{\myname}{\textbf{Kumar, A.}} +% so that you don't have to keep typing in \textbf{your name} for every paper you cite. + +\newcommand{\presentation}[4]{{#1} \hfill{#2} \\ \textit{#3} \hfill{#4}} +% 1 is the section of the conference, 2 is the date, 3 is the conference name or school name 4 is the location + + +\newenvironment{pres}[1] +{ +\textbf{#1} % name of the presentation +\begin{wrapped}} +{% use the presentation command as the argument +\end{wrapped} +\smallspace + +} + + +\newenvironment{desc}[3] +{ +\noindent\textbf{#1} \hfill{#2}\\ \textit{#3} +\begin{wrapped}} +{ +\end{wrapped} +\medspace + +} + -- cgit v1.2.3