summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-09-08 21:15:11 +0000
committerKarl Berry <karl@freefriends.org>2023-09-08 21:15:11 +0000
commitc97b51b5d30990da62a555a0f5c2089a9b2ab56e (patch)
treeedf75d847126d998346a7c3d2678a9b01eb7bd0a /Master/texmf-dist/doc
parent9238267d6012b5b60c03dc4a6f070307e5b523d4 (diff)
curriculum-vitae (8sep23)
git-svn-id: svn://tug.org/texlive/trunk@68211 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r--Master/texmf-dist/doc/latex/curriculum-vitae/README.md19
-rw-r--r--Master/texmf-dist/doc/latex/curriculum-vitae/curriculum-vitae-example.pdfbin0 -> 103100 bytes
-rw-r--r--Master/texmf-dist/doc/latex/curriculum-vitae/curriculum-vitae-example.tex40
3 files changed, 59 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/curriculum-vitae/README.md b/Master/texmf-dist/doc/latex/curriculum-vitae/README.md
new file mode 100644
index 00000000000..6951c93206b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/curriculum-vitae/README.md
@@ -0,0 +1,19 @@
+# *Curriculum vitae* class for LaTeX
+
+This is a lightweight class file that makes it convenient to typeset CVs/resumes with LaTeX. It provides a `\cvsection` command and `detail` environment. A sample is included in curriculum-vitae.tex.
+
+```
+Copyright 2023 Sumukh Prasad
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+``` \ No newline at end of file
diff --git a/Master/texmf-dist/doc/latex/curriculum-vitae/curriculum-vitae-example.pdf b/Master/texmf-dist/doc/latex/curriculum-vitae/curriculum-vitae-example.pdf
new file mode 100644
index 00000000000..669f0d40049
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/curriculum-vitae/curriculum-vitae-example.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/curriculum-vitae/curriculum-vitae-example.tex b/Master/texmf-dist/doc/latex/curriculum-vitae/curriculum-vitae-example.tex
new file mode 100644
index 00000000000..e11fb3b394b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/curriculum-vitae/curriculum-vitae-example.tex
@@ -0,0 +1,40 @@
+\documentclass[12pt]{curriculum-vitae}
+\usepackage[a4paper, total={7.3in, 9.7in}]{geometry}
+
+\name{Name Namename}
+\mailingaddr{123 High Street, Anytown, County, Postcode}
+\desc{Professional Action Figure Collector}
+\webpage{www.example.com}
+\phone{01234 567 890}
+
+
+
+\begin{document}
+
+ \maketitle
+
+ \cvsection[Education]{
+ \begin{detail}[School of Action Figure Collecting]{Jan 2000}{Jan 2003}
+ \begin{itemize}
+ \item Learnt how to organise action figures
+ \item Conducted research on action figure heights
+ \end{itemize}
+ \end{detail}
+ }
+
+ \cvsection[Rando Research]{
+ \begin{detail}[Action Figure Heights: Are they growing smaller?]{Jan 2000}{Jan 2003}
+ Very important research article.
+ \end{detail}
+ \begin{detail}[Action Figure Heights: Are they growing taller?]{Jan 2000}{Jan 2003}
+ Another very important research article.
+ \end{detail}
+ \subsection{Journals}
+ \begin{itemize}
+ \item Journal of Action vol 333
+ \item Journal of Action vol 334
+ \item Journal of Action vol 335
+ \end{itemize}
+ }
+
+\end{document} \ No newline at end of file