summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/koma-moderncvclassic
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-10-24 23:33:47 +0000
committerKarl Berry <karl@freefriends.org>2010-10-24 23:33:47 +0000
commit919f85285a2f8bdf4ef6d7f5b49a4bc61d443a27 (patch)
treec24f3fbc8ffff9a0a1b429ec195bd1f76121ae71 /Master/texmf-dist/doc/latex/koma-moderncvclassic
parentd5a6a8d8af0b82fe3a52fa254c74de353c8d05d7 (diff)
new koma package koma-moderncvclassic (17oct10)
git-svn-id: svn://tug.org/texlive/trunk@20169 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/koma-moderncvclassic')
-rw-r--r--Master/texmf-dist/doc/latex/koma-moderncvclassic/README.txt18
-rw-r--r--Master/texmf-dist/doc/latex/koma-moderncvclassic/cvbasic.tex138
2 files changed, 156 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/koma-moderncvclassic/README.txt b/Master/texmf-dist/doc/latex/koma-moderncvclassic/README.txt
new file mode 100644
index 00000000000..7253b0f1c83
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/koma-moderncvclassic/README.txt
@@ -0,0 +1,18 @@
+KOMA-MODERNCVCLASSIC 0.1
+========================
+
+This package provides an imitation of the moderncv-class with the classic style (by Xavier Danaux), to be used in conjunction with the koma-classes (usually scrartcl).
+
+Thus it is possible to configure pagelayout, headings etc. the way it is done in koma-classes. Moreover, it is possible to use biblatex, while the original moderncv-class is incompatible with biblatex. (This, actually, was the main reason for building this package.)
+
+To be able to use the moderncvclassic-package,
+download the gzip-archive, unpack it and copy the file moderncvlassic.sty to your local tex-directory.
+With
+\usepackage{koma-moderncvlassic}
+the moderncvclassic definitions are available in your document.
+
+The file cvbasic.tex, which is included in the gzip-archive, shows exemplarily, how a document with koma-moderncvclassic might be structured, which commands are available and how they are to be used.
+
+Have fun!!
+Suggestions, wishes, bug reports:
+salome.soedergran@gmx.ch
diff --git a/Master/texmf-dist/doc/latex/koma-moderncvclassic/cvbasic.tex b/Master/texmf-dist/doc/latex/koma-moderncvclassic/cvbasic.tex
new file mode 100644
index 00000000000..b390368a2be
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/koma-moderncvclassic/cvbasic.tex
@@ -0,0 +1,138 @@
+\RequirePackage{filecontents}
+\begin{filecontents}{\jobname.bib}
+@ARTICLE{2006,
+ title = {journalarticle},
+ journal = {journal},
+ year = {2006},
+ volume = {6},
+ pages = {19--75}
+}
+@BOOK{2000,
+ title = {Some Book},
+ address = {Around the Corner},
+ year = {2000}
+}
+\end{filecontents}
+% ===========================
+\documentclass[%
+fontsize=11pt,%
+a4paper,%
+pagesize,%
+headinclude,footinclude,%
+headings=normal,%
+%draft,%
+%oneside%
+]{scrartcl}
+\usepackage{scrpage2}
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage[ngerman]{babel}
+\usepackage[german=quotes]{csquotes}
+
+\tolerance=200 % Weissraum
+\clubpenalty = 1000 % Schusterjungen
+\widowpenalty = 1000 % Hurenkinder
+
+% ===========================
+% VARIABLES
+% ===========================
+% must be defined, BEFORE koma-moderncvclassic is loaded!
+
+% address; not needed variables should be commented out
+\renewcommand*{\title}{Lebenslauf}% für PDF
+\newcommand*{\firstname}{Minna}
+\newcommand*{\familyname}{von Barnhelm}
+\newcommand*{\acadtitle}{Dr.~h.\,c.~mult.}
+\newcommand*{\addressstreet}{Way of no return 77}
+\newcommand*{\addresscity}{9999 Hinterdemmond}
+\newcommand*{\address}[2]{\addressstreet{#1}\addresscity{#2}}
+%\newcommand*{\mobile}{}
+\newcommand*{\phone}{001 23456789}
+%\newcommand*{\faxnr}{}
+\newcommand*{\email}{minna@barnhelm.edu}
+%\newcommand*{\extrainfo}{}
+%\renewcommand*{\quote}{}
+
+% Foto
+%\photo[3cm]{minna.jpg}
+% '3cm' is the height the picture must be resized to;
+% 'picture' is the name of the picture file;
+
+% ===========================
+% KOMA-MODERNCVCLASSIC
+% ===========================
+
+\usepackage[myblue]{koma-moderncvclassic} % color theme as option; default = myblue; other predefined colors that may be used: red, green, blue, cyan, magenta, yellow, black, white, darkgray, gray, lightgray
+
+
+% ===========================
+% PAGELAYOUT and
+% ADAPTIONS
+% ===========================
+
+%\usepackage[left=2cm,right=2cm,top=3cm,bottom=5cm]{geometry}
+\renewcommand*{\familydefault}{\sfdefault}% default font sans-serif
+%\renewcommand{\firstnamefont}{\fontsize{24}{26}\sffamily\mdseries\upshape} % name in smaller font
+\newcommand*{\totalpagemark}{\usekomafont{pagenumber}\thepage/\pageref{lastpage}}% for page and pagetotal
+
+% ===========================
+% HEAD- AND FOOTLINES
+% ===========================
+\pagestyle{scrheadings}
+\clearscrheadfoot
+\ifoot{CV~\firstname~\familyname}
+\ofoot{\totalpagemark}
+%\ihead{}
+%\ohead{}
+
+% ===========================
+% BIBLIOGRAPHY
+% ===========================
+
+\usepackage[backend=bibtex8,%
+style=authortitle,%
+sorting=ydnt,% sorted by year, descending
+]{biblatex}
+\bibliography{\jobname.bib}
+\defbibheading{bibliography}[Publications]{\section{#1}}
+
+% ==================================================================
+% DOCUMENT
+% ==================================================================
+
+\begin{document}
+
+\maketitle
+
+\section{Personal Information}
+\cvline{margintext}{linetext}
+\cvline{margintext}{linetext}
+\cvline{margintext}{linetext}
+
+\section{Education}
+\subsection{Schools}
+\cventry{years}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}
+\cventry{years}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}
+\subsection{University}
+\cventry{years}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}
+\cventry{years}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}
+\subsection{Job Training}
+\cventry{years}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}
+\cventry{years}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}
+
+\section{Languages}
+\cvlanguage{name}{level}{comment}
+\cvlanguage{name}{level}{comment}
+\cvlanguage{name}{level}{comment}
+
+\section{Computer Knowledges}
+\cvcomputer{category}{programs}{category}{programs}
+\cvcomputer{category}{programs}{category}{programs}
+
+\newpage
+
+\nocite{*}
+\printbibliography
+
+\label{lastpage}% needed for computing pagetotal
+\end{document}