From ac460c934fae4a9f0fb4fcdd0d49cfce7f71c5a0 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Thu, 12 Nov 2015 22:17:53 +0000 Subject: gradstudentresume (12nov15) git-svn-id: svn://tug.org/texlive/trunk@38832 c570f23f-e606-0410-a88d-b1316a301751 --- .../doc/latex/gradstudentresume/README.txt | 118 ++------------------- .../doc/latex/gradstudentresume/example.tex | 41 ++----- .../latex/gradstudentresume/gradstudentresume.cls | 13 +-- 3 files changed, 18 insertions(+), 154 deletions(-) (limited to 'Master/texmf-dist') diff --git a/Master/texmf-dist/doc/latex/gradstudentresume/README.txt b/Master/texmf-dist/doc/latex/gradstudentresume/README.txt index cf34bfb5c0e..92924a91f89 100644 --- a/Master/texmf-dist/doc/latex/gradstudentresume/README.txt +++ b/Master/texmf-dist/doc/latex/gradstudentresume/README.txt @@ -1,7 +1,8 @@ -%%%%%%%%% gradstudentresume %%%%%%%%%%%%%%%%%%% +%%%%%%%%% gradstudentresume %%%%%%%%%%%%%%%%%%% %%%%%%%%%%%% Written By: Anagha Kumar %%%%%%%%%%%% -%%%%%% License: The LATEX Project Public Li­cense (lp­pl1.3) %%%%%% -%%%%%% Version: 2015/09/19 %%%%%%%%%%%%%%% +%%%%%% License: The LATEX Project Public License (lppl1.3) %%%%%% +%%%%%% Version: 2015/11/12 %%%%%%%%%%%%%%% + %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. @@ -9,113 +10,8 @@ % 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} -%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. - -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} - -} - - -\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}} - -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 - -} - -\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 - -} - - - - - - +%I have named this class gradstudentresume. Please save it to the same folder that your .tex file is located in +%and then compile. +%% The .cls file contains many comments to help guide the user. \ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/gradstudentresume/example.tex b/Master/texmf-dist/doc/latex/gradstudentresume/example.tex index 859b9898c2c..9fe5982c516 100644 --- a/Master/texmf-dist/doc/latex/gradstudentresume/example.tex +++ b/Master/texmf-dist/doc/latex/gradstudentresume/example.tex @@ -26,6 +26,7 @@ \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}} +\item{\paper{\myname}{2015}{Gradstudentresume: A document class for graduate student CVs}{TUGboat}{36}{3}{901-903}} \end{itemize} \largespace @@ -54,23 +55,19 @@ \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} @@ -82,34 +79,16 @@ \sectionheading{Service} \subsectionheading{Institutional} \begin{wrapped} -\item{Statistical Reviewer - MedStar Health Research Institute Scientific Review Board \hfill{2015 - present}} +\item{Statistical Reviewer - MedStar Health Research Institute Scientific Review Board \hfill{2015 - present}} +\item{Statistician - Data and Safety Monitoring Board (ClinicalTrials.gov: NCT02540109) \hfill{2015 - present}} \\ +Targeted Electrotherapy for Aphasia Stroke Rehabilitation (TEASER) \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} +\sectionheading{Software Contributions} +\begin{itemize} +\item{\LaTeX: Author of the document class \texttt{gradstudentresume} downloadable from \url{https://www.ctan.org/pkg/gradstudentresume}.} +\end{itemize} \largespace \sectionheading{References} @@ -118,10 +97,6 @@ \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/tex/latex/gradstudentresume/gradstudentresume.cls b/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls index 1332fc58fc5..2e3e5fc96a9 100644 --- a/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls +++ b/Master/texmf-dist/tex/latex/gradstudentresume/gradstudentresume.cls @@ -1,7 +1,7 @@ %%%%%%%%% gradstudentresume %%%%%%%%%%%%%%%%%%% %%%%%%%%%%%% Written By: Anagha Kumar %%%%%%%%%%%% -%%%%%% License: The LATEX Project Public Li­cense (lp­pl1.3) %%%%%% -%%%%%% Version: 2015/09/19 %%%%%%%%%%%%%%% +%%%%%% License: The LATEX Project Public License (lppl1.3) %%%%%% +%%%%%% Version: 2015/11/12 %%%%%%%%%%%%%%% \NeedsTeXFormat{LaTeX2e} @@ -17,19 +17,16 @@ %% 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} - } @@ -39,7 +36,6 @@ \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. @@ -50,11 +46,10 @@ \newcommand{\sectionrule}{\noindent\hfil\rule{\textwidth}{.6pt}\hfil \vspace{2mm} - } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\newcommand{\undergrad}[5]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4} \\ Graduation Honors: {#5}} +\newcommand{\undergrad}[5]{\noindent \textbf{#1}\hfill {#2} \\ \textit{#3}\hfill {#4} \\ {\def\honors{#5}\ifx\honors\empty\else Graduation Honors: {#5}}\fi} \newcommand{\grad}[6]{\noindent{\textbf{{#1}}} \hfill{#2}\\ \textit{#3} \hfill{#4} \\ Thesis: {#5} \\ Advisor: {#6}} \newcommand{\sectionheading}[1]{\noindent{\large{\sc{#1}}} \\ \sectionrule} @@ -83,7 +78,6 @@ {% use the presentation command as the argument \end{wrapped} \smallspace - } @@ -94,7 +88,6 @@ { \end{wrapped} \medspace - } -- cgit v1.2.3