summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/harnon-cv
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-05-21 23:33:01 +0000
committerKarl Berry <karl@freefriends.org>2012-05-21 23:33:01 +0000
commit3dd17842ae1b32b6a9387176e93ac2ace767192a (patch)
tree93dfbf6457c92467fc6dcea2afd52f836fa7da58 /Master/texmf-dist/doc/latex/harnon-cv
parent92498c477e222a7fb71aa16b13956666ebf88c44 (diff)
new latex package harnon-cv 1.0 (19may12)
git-svn-id: svn://tug.org/texlive/trunk@26543 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/harnon-cv')
-rw-r--r--Master/texmf-dist/doc/latex/harnon-cv/README41
-rw-r--r--Master/texmf-dist/doc/latex/harnon-cv/sample.pdfbin0 -> 54335 bytes
-rw-r--r--Master/texmf-dist/doc/latex/harnon-cv/sample.tex48
3 files changed, 89 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/harnon-cv/README b/Master/texmf-dist/doc/latex/harnon-cv/README
new file mode 100644
index 00000000000..977cafee344
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/harnon-cv/README
@@ -0,0 +1,41 @@
+
+----------------------------------
+harnon-cv (Latex Document Class)
+----------------------------------
+
+This is a latex document class for building a neat CV document using a 'timeline' for displaying your recent experience. A minimal working example is provided in sample.tex, which also provides some basic examples of the special commands provided.
+
+Include the class by starting your .tex file with
+
+ \documentclass{harnon-cv}
+
+You can add your information by writing
+
+ % add your user information
+ \author{My Name}
+ \youremail{your@email.com}
+ \yourwebsite{http://github.com}
+ \youraddress{121 Your Address, \\Your Town\\Your Postcode}
+
+
+You can add headers to document sections as follows
+
+ \adddocumentheader{Top of Page Super heading}
+ \addheadertext{Section Heading}
+ \addsubheader{Sub section heading}
+ \addcallout{Some emphasised text, similar to sub section}
+
+You can also add a timeline as follows
+
+ \starttimeline
+ \timelineitem{2009}{Did some stuff}
+ \timelinespacer
+ \timelineitem{2010}{
+ \addtimelinebullet{Some text in a bullet pt}
+ \addtimelinebullet{Some more text in a bullet point}
+ }
+ \stoptimeline
+
+The \timelineseparator command just adds some white space between timeline items. It is optional.
+
+This is provided as public domain (with no warranty), so use, change, modify however you wish. If you find or add something particularly cool, feel free to push some changes at https://github.com/mecharius/latex-timelineCV \ No newline at end of file
diff --git a/Master/texmf-dist/doc/latex/harnon-cv/sample.pdf b/Master/texmf-dist/doc/latex/harnon-cv/sample.pdf
new file mode 100644
index 00000000000..7c3a01e83ef
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/harnon-cv/sample.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/harnon-cv/sample.tex b/Master/texmf-dist/doc/latex/harnon-cv/sample.tex
new file mode 100644
index 00000000000..788abb20534
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/harnon-cv/sample.tex
@@ -0,0 +1,48 @@
+\documentclass{harnon-cv}
+
+
+ % personal details
+ \author{My Name} % OR - \yourname{My Name}
+ \yournumber{1800 123 456}
+ \youraddress{1 Smiths Road\\Smithsville OXON \\OX33 0HX}
+ \yourwebsite{http//yourweburl.com}
+
+
+ %personal statement
+ \recenthistory{A bit about yourself - a mini 3 sentence summary that an employer can read to `get to know you'. This can be useful so that they can read about you `at a glance'. It is also a chance for you to sell yourself! If you leave out the line defining \emph{recent history}, then this section will not appear.}
+
+ \begin{document}
+
+ \maketitle
+
+ % add your recent experience 'timeline'
+ \addheadertext{Experience}
+ \starttimeline
+ \timelineitem{2009}{
+ \addsubheader{Office Manager, ACME Inc.}
+ \addtimelinebullet{A very short line}
+ \addtimelinebullet{A very long line to show that wraps. Note that by using the \emph{addtimelinebullet} command, the indentation is also fixed.}
+ }
+ \timelinespacer
+
+ \timelineitem{2007}{
+ \addsubheader{CEO, San Antonio Spurs}
+ \addtimelinebullet{You can even use a list inside a \emph{timeline}!}
+ \begin{enumerate}
+ \item List item 1
+ \item List item 2
+ \end{enumerate}\par
+ \addtimelinebullet{Just make sure you throw in a \emph{par} when you add an item after a list otherwise following \emph{addtimelinebullets} will be indented strangely}
+ \addtimelinebullet{A little bit of care needs to be taken with the length of your timeline items, as as page breaks will \textbf{not} occur within a \emph{timelineitem}}
+ }
+ \stoptimeline
+
+ % add a skills section
+ \addheadertext{Skills}
+ \begin{itemize}
+ \item Computers and stuff
+ \item Basically you can build the rest of your document however you would like
+ \item Just use the header styles to maintain \addcallout{formatting} (the word formatting was formatted using the \emph{addcallout} command).
+ \end{itemize}
+
+ \end{document} \ No newline at end of file