summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/mycv
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-05-21 23:58:58 +0000
committerKarl Berry <karl@freefriends.org>2012-05-21 23:58:58 +0000
commita7b8fe1003c960fbd27086146bb341a6ddae788a (patch)
treeed903293e66d4470669962e1d77abfb05dc561e2 /Master/texmf-dist/tex/latex/mycv
parenteec1bcc6efce237f93a0615bee7089ba973beedc (diff)
mycv (21may12)
git-svn-id: svn://tug.org/texlive/trunk@26558 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/mycv')
-rw-r--r--Master/texmf-dist/tex/latex/mycv/mycv.cls91
-rw-r--r--Master/texmf-dist/tex/latex/mycv/mycv_base.def114
-rw-r--r--Master/texmf-dist/tex/latex/mycv/mycv_dec.sty111
-rw-r--r--Master/texmf-dist/tex/latex/mycv/mycv_misc.def69
-rw-r--r--Master/texmf-dist/tex/latex/mycv/mycv_style.sty128
-rw-r--r--Master/texmf-dist/tex/latex/mycv/mycv_version.def26
6 files changed, 326 insertions, 213 deletions
diff --git a/Master/texmf-dist/tex/latex/mycv/mycv.cls b/Master/texmf-dist/tex/latex/mycv/mycv.cls
index a2359425dc6..300d551065f 100644
--- a/Master/texmf-dist/tex/latex/mycv/mycv.cls
+++ b/Master/texmf-dist/tex/latex/mycv/mycv.cls
@@ -1,22 +1,24 @@
-% -------------------------------------------------------
-% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
-% This work may be distributed and/or modified under the
-% conditions of the LaTeX Project Public License version
-% 1.3c, available at 'http://www.latex-project.org/lppl'.
-% -------------------------------------------------------
-
-% ===============================================================================
-% ------------------------------------------------------------------------- %
-% Why a class file? (from document: LaTeX 2e for class and package writers) %
-% ------------------------------------------------------------------------- %
-% %
-% The first thing to do when you want to put some new LaTEX commands in a file %
-% is to decide whether it should be a document class or a package. The rule of %
-% thumb is: %
-% %
-% If the commands could be used with any document class, then make them a %
-% package; if not, then make them a class. %
-% ===============================================================================
+%%
+%% This is file `mycv.cls',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% mycv.dtx (with options: `mycv.cls')
+%% --------------------------------------------------------
+%% Author: Andrea Ghersi
+%% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
+%%
+%% This work may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License version
+%% 1.3c, available at 'http://www.latex-project.org/lppl'.
+%%
+%% This work has the LPPL maintenance status "maintained".
+%% The Current Maintainer of this work is Andrea Ghersi.
+%%
+%% This work consists of the files listed in the README
+%% file.
+%% --------------------------------------------------------
\NeedsTeXFormat{LaTeX2e}
@@ -24,20 +26,20 @@
\input{mycv_version.def}
\ProvidesClassSVN
- {$Id: mycv.cls 85 2012-05-12 17:07:42Z ghangenit $}
+ {$Id: mycv.cls 87 2012-05-17 00:40:11Z ghangenit $}
[v\@versionstr][My Curriculum Vitae class]
-% ========
-% Packages
-% ========
+%% ========
+%% Packages
+%% ========
\RequirePackage{kvoptions} % for class options with key-value format
\RequirePackage{xstring} % for string utilities
\RequirePackage{ifthen} % for the <\ifthenelse> command
-% =============
-% Class Options
-% =============
+%% =============
+%% Class Options
+%% =============
\DeclareBoolOption{withDec}
@@ -50,10 +52,10 @@
\DeclareStringOption[]{mdlname}
\ProcessKeyvalOptions*
-% -----------------------------------------------------------
-% The value of an option declared with <\DeclareStringOption>
-% is stored in the macro \<class (or package) name>@<option>
-% -----------------------------------------------------------
+%% -----------------------------------------------------------
+%% The value of an option declared with <\DeclareStringOption>
+%% is stored in the macro \<class (or package) name>@<option>
+%% -----------------------------------------------------------
\PassOptionsToPackage{\mycv@language}{babel}
\RequirePackage{babel}
@@ -62,23 +64,23 @@
\def\cvcontentsdir{\mycv@cntdir}
-% ===============
-% File inclusions
-% ===============
+%% ===============
+%% File inclusions
+%% ===============
\input{mycv_base.def}
\input{mycv_misc.def}
-% -------------------------------------
-% use custom, default or any style file
-% -------------------------------------
+%% -------------------------------------
+%% use custom, default or any style file
+%% -------------------------------------
\ifthenelse{\equal{\mycv@style}{none}}%
{\relax}% file style is not wanted
{\RequirePackage{\mycv@style}}
-% ----------------------
-% use decorations or not
-% ----------------------
+%% ----------------------
+%% use decorations or not
+%% ----------------------
\ifthenelse{\boolean{mycv@withDec}}%
{\RequirePackage{mycv_dec}}%
{\relax}
@@ -95,13 +97,16 @@
\fi
}
-% -----------------------------------------------
-% <\ifoption{optionname}{then block}{else block}>
-% -----------------------------------------------
+%% -----------------------------------------------
+%% <\ifoption{optionname}{then block}{else block}>
+%% -----------------------------------------------
\DeclareRobustCommand{\ifoption}[1]{%
\begingroup
\ifthenelse{\boolean{mycv@#1}}
{\endgroup\expandafter\@firstoftwo}
{\endgroup\expandafter\@secondoftwo}%
-} \ No newline at end of file
+}
+\endinput
+%%
+%% End of file `mycv.cls'.
diff --git a/Master/texmf-dist/tex/latex/mycv/mycv_base.def b/Master/texmf-dist/tex/latex/mycv/mycv_base.def
index a655bcbb5e2..d688271b896 100644
--- a/Master/texmf-dist/tex/latex/mycv/mycv_base.def
+++ b/Master/texmf-dist/tex/latex/mycv/mycv_base.def
@@ -1,22 +1,37 @@
-% -------------------------------------------------------
-% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
-% This work may be distributed and/or modified under the
-% conditions of the LaTeX Project Public License version
-% 1.3c, available at 'http://www.latex-project.org/lppl'.
-% -------------------------------------------------------
+%%
+%% This is file `mycv_base.def',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% mycv.dtx (with options: `mycv-base.def')
+%% --------------------------------------------------------
+%% Author: Andrea Ghersi
+%% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
+%%
+%% This work may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License version
+%% 1.3c, available at 'http://www.latex-project.org/lppl'.
+%%
+%% This work has the LPPL maintenance status "maintained".
+%% The Current Maintainer of this work is Andrea Ghersi.
+%%
+%% This work consists of the files listed in the README
+%% file.
+%% --------------------------------------------------------
\ProvidesFileSVN
- {$Id: mycv_base.def 73 2012-05-05 14:28:57Z ghangenit $}
+ {$Id: mycv_base.def 87 2012-05-17 00:40:11Z ghangenit $}
[v\@versionstr][Base system core]
-% for lists and other useful tools
+%% for lists and other useful tools
\RequirePackage{etextools}
-%%%%%%%%%%%%%%%%%%
-% %
-% Default values %
-% %
-%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%
+%% %
+%% Default values %
+%% %
+%%%%%%%%%%%%%%%%%%%
\def\@mainbodypagesize{1.00}
\def\@subbodypagesize{0.45}
@@ -27,11 +42,11 @@
\def\@mainfooterpagesize{1.00}
\def\@subfooterpagesize{0.44}
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% %
-% Layout components (parser) %
-% %
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% %
+%% Layout components (parser) %
+%% %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\@cmdsListSep{:}
\def\@argsListSep{=}
@@ -39,18 +54,18 @@
\expandaftercmds{\DeclareCmdListParser\MyParserCmds}{\@cmdsListSep}
\expandaftercmds{\DeclareCmdListParser\MyParserArgs}{\@argsListSep}
-% -----------------------------------
-% setup file components: header pages
-% -----------------------------------
+%% -----------------------------------
+%% setup file components: header pages
+%% -----------------------------------
\def\@MainHeaderPageBegin{MainHeaderPageBegin}
\def\@SubHeaderPageBegin{SubHeaderPageBegin}
\def\@MainHeaderPageEnd{MainHeaderPageEnd}
\def\@SubHeaderPageEnd{SubHeaderPageEnd}
-% ---------------------------------
-% setup file components: body pages
-% ---------------------------------
+%% ---------------------------------
+%% setup file components: body pages
+%% ---------------------------------
\def\@MainBodyPageBegin{MainBodyPageBegin}
\def\@MainBodyPageEnd{MainBodyPageEnd}
@@ -62,9 +77,9 @@
\def\@MainFooterPageEnd{MainFooterPageEnd}
\def\@SubFooterPageEnd{SubFooterPageEnd}
-% -------------------
-% regular expressions
-% -------------------
+%% -------------------
+%% regular expressions
+%% -------------------
\def\@regexPreCmd{<precmd:([-!*@.0-9A-Za-z \@cmdsListSep\@argsListSep]+)>}
\def\@regexPostCmd{<postcmd:([-!*@.0-9A-Za-z \@cmdsListSep\@argsListSep]+)>}
@@ -84,9 +99,9 @@
\def\@regexParamTypeB{^[!]}
\def\@regexParamTypeC{^[*]}
-% ==================
-% Auxiliary commands
-% ==================
+%% ==================
+%% Auxiliary commands
+%% ==================
\newcommand{\@concatCommandArg}[1]{%
\ifnum\pdfmatch{\@regexParamTypeA}{#1}=1
@@ -212,9 +227,9 @@
\fi
}
-% =============
-% Main commands
-% =============
+%% =============
+%% Main commands
+%% =============
\newcommand{\@bodylayoutlistentry}[1]{%
\ifstrmatch{\@SubBodyPageBegin}{#1}{%
@@ -287,11 +302,11 @@
}%
}
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% %
-% Layout components (render) %
-% %
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% %
+%% Layout components (render) %
+%% %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\@raisewarning}[1]{%
\ClassWarning{mycv}{%
@@ -309,26 +324,26 @@
}%
{%else
\ifsinglechar{h}{#1}{%
- % --------
- % HEADINGS
- % --------
+ %% --------
+ %% HEADINGS
+ %% --------
\@ifundefined{headerlayoutlist}%
{\@raisewarning{headerlayoutlist}}% else
{\csvloop[\@headerlayoutlistentry]\headerlayoutlist}%
}%
{%else
- % ------------------------------------------------
- % FOOTINGS: sign and treatment of personal details
- % ------------------------------------------------
+ %% ------------------------------------------------
+ %% FOOTINGS: sign and treatment of personal details
+ %% ------------------------------------------------
\ifsinglechar{f}{#1}{%
\@ifundefined{footerlayoutlist}%
{\@raisewarning{footerlayoutlist}}% else
{\csvloop[\@footerlayoutlistentry]\footerlayoutlist}%
}%
{%\else
- % --------------
- % ALL COMPONENTS
- % --------------
+ %% --------------
+ %% ALL COMPONENTS
+ %% --------------
\@ifundefined{headerlayoutlist}%
{\@raisewarning{headerlayoutlist}}% else
{\csvloop[\@headerlayoutlistentry]\headerlayoutlist}%
@@ -342,4 +357,7 @@
}%
}%
\endgroup
-} \ No newline at end of file
+}
+\endinput
+%%
+%% End of file `mycv_base.def'.
diff --git a/Master/texmf-dist/tex/latex/mycv/mycv_dec.sty b/Master/texmf-dist/tex/latex/mycv/mycv_dec.sty
index ffeee559861..31dbb3e2d85 100644
--- a/Master/texmf-dist/tex/latex/mycv/mycv_dec.sty
+++ b/Master/texmf-dist/tex/latex/mycv/mycv_dec.sty
@@ -1,15 +1,32 @@
-% -------------------------------------------------------
-% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
-% This work may be distributed and/or modified under the
-% conditions of the LaTeX Project Public License version
-% 1.3c, available at 'http://www.latex-project.org/lppl'.
-% -------------------------------------------------------
-
+%%
+%% This is file `mycv_dec.sty',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% mycv.dtx (with options: `mycv-dec.sty')
+%% --------------------------------------------------------
+%% Author: Andrea Ghersi
+%% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
+%%
+%% This work may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License version
+%% 1.3c, available at 'http://www.latex-project.org/lppl'.
+%%
+%% This work has the LPPL maintenance status "maintained".
+%% The Current Maintainer of this work is Andrea Ghersi.
+%%
+%% This work consists of the files listed in the README
+%% file.
+%% --------------------------------------------------------
+
+\NeedsTeXFormat{LaTeX2e}
\RequirePackage{svn-prov}
+
\input{mycv_version.def}
\ProvidesPackageSVN
- {$Id: mycv_dec.sty 85 2012-05-12 17:07:42Z ghangenit $}
+ {$Id: mycv_dec.sty 89 2012-05-19 18:23:03Z ghangenit $}
[v\@versionstr][Decorations commands]
\RequirePackage{tikz} % for graphics
@@ -21,11 +38,11 @@
\RequirePackage{xparse} % for commands with multiple default arguments
\RequirePackage{xstring} % for string utilities
-%%%%%%%%%%%%
-% %
-% Settings %
-% %
-%%%%%%%%%%%%
+%%%%%%%%%%%%%
+%% %
+%% Settings %
+%% %
+%%%%%%%%%%%%%
\def\@segmentLengthString{}
\def\@segmentLengthValue{}
@@ -57,31 +74,31 @@
}
}
-%%%%%%%%%%%%
-% %
-% Commands %
-% %
-%%%%%%%%%%%%
+%%%%%%%%%%%%%
+%% %
+%% Commands %
+%% %
+%%%%%%%%%%%%%
\newcommand{\versionBasedSettings}[2]{%
\IfBooleanTF#1{%
- % ---------------------------------------------------------
- % From <xstring> package
- % ---------------------------------------------------------
- % Macros of this package take the catcodes of tokens into
- % account. To avoid unexpected behaviour (particulary with
- % tests), you should keep in mind that tokens and their
- % catcodes are examined.
- % For instance, these two arguments: {\string a\string b}
- % and {ab} do not expand into equal strings for xstring!
- % Because of the command \string, the first expands into
- % ab with catcodes 12 while the second have characters
- % with their natural catcodes 11. Catcodes do not match!
- % Starred macros do not take catcodes into account. They
- % simply convert some arguments into arguments with
- % catcodes 10, 11 and 12, and call the non-starred macros
- % with these modified arguments.
- % ---------------------------------------------------------
+ %% ---------------------------------------------------------
+ %% From <xstring> package
+ %% ---------------------------------------------------------
+ %% Macros of this package take the catcodes of tokens into
+ %% account. To avoid unexpected behaviour (particulary with
+ %% tests), you should keep in mind that tokens and their
+ %% catcodes are examined.
+ %% For instance, these two arguments: {\string a\string b}
+ %% and {ab} do not expand into equal strings for xstring!
+ %% Because of the command \string, the first expands into
+ %% ab with catcodes 12 while the second have characters
+ %% with their natural catcodes 11. Catcodes do not match!
+ %% Starred macros do not take catcodes into account. They
+ %% simply convert some arguments into arguments with
+ %% catcodes 10, 11 and 12, and call the non-starred macros
+ %% with these modified arguments.
+ %% ---------------------------------------------------------
\IfStrEqCase*{#2}{%
{radial}{\def\@colorStr{inner color}}%
{ball}{\def\@colorStr{ball color}}%
@@ -91,12 +108,13 @@
}{\relax}%
}
-% -----------------------------------------------------
-% Pathmorphing decoration values:
-% shape, straight zigzag, random steps, saw, zigzag,
-% bent, bumps, coil, snake, Koch snowflake
-% Shadings: radial, ball
-% -----------------------------------------------------
+%% -----------------------------------------------------
+%% Pathmorphing decoration values:
+%% shape, straight zigzag, random steps, saw, zigzag,
+%% bent, bumps, coil, snake, Koch snowflake
+%%
+%% Shadings: radial, ball
+%% -----------------------------------------------------
\DeclareDocumentCommand{\mydecorationsPathmorphing}%
{s O{1} m O{gray} D<>{radial} D<>{white}}%
@@ -136,9 +154,9 @@
\endgroup
}
-% --------------------------------------
-% Shapes: dart, diamond, rectangle, star
-% --------------------------------------
+%% --------------------------------------
+%% Shapes: dart, diamond, rectangle, star
+%% --------------------------------------
\DeclareDocumentCommand{\mydecorationsShape}%
{O{1} m O{gray}}
@@ -228,4 +246,7 @@
{\def\@segmentLengthString{segment length}} % not starred
\def\@segmentLengthValue{#2}%
-} \ No newline at end of file
+}
+\endinput
+%%
+%% End of file `mycv_dec.sty'.
diff --git a/Master/texmf-dist/tex/latex/mycv/mycv_misc.def b/Master/texmf-dist/tex/latex/mycv/mycv_misc.def
index f1d69bb39ad..ae6b57543de 100644
--- a/Master/texmf-dist/tex/latex/mycv/mycv_misc.def
+++ b/Master/texmf-dist/tex/latex/mycv/mycv_misc.def
@@ -1,9 +1,31 @@
-% -------------------------------------------------------
-% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
-% This work may be distributed and/or modified under the
-% conditions of the LaTeX Project Public License version
-% 1.3c, available at 'http://www.latex-project.org/lppl'.
-% -------------------------------------------------------
+%%
+%% This is file `mycv_misc.def',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% mycv.dtx (with options: `mycv-misc.def')
+%% --------------------------------------------------------
+%% Author: Andrea Ghersi
+%% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
+%%
+%% This work may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License version
+%% 1.3c, available at 'http://www.latex-project.org/lppl'.
+%%
+%% This work has the LPPL maintenance status "maintained".
+%% The Current Maintainer of this work is Andrea Ghersi.
+%%
+%% This work consists of the files listed in the README
+%% file.
+%% --------------------------------------------------------
+%% -------------------------------------------------------
+%% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
+%%
+%% This work may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License version
+%% 1.3c, available at 'http://www.latex-project.org/lppl'.
+%% -------------------------------------------------------
\ProvidesFileSVN
{$Id: mycv_misc.def 66 2012-04-28 14:38:41Z ghangenit $}
@@ -11,9 +33,9 @@
\RequirePackage{hyperref}
-% -----------------------------------------------------
-% partial hyperref setup: the rest is set in style file
-% -----------------------------------------------------
+%% -----------------------------------------------------
+%% partial hyperref setup: the rest is set in style file
+%% -----------------------------------------------------
\hypersetup{%
pdfstartpage = 1,
@@ -25,11 +47,11 @@
pdfcreator = \LaTeX{} with 'mycv' (v\@versionstr)
}
-%%%%%%%%%%%
-% %
-% Margins %
-% %
-%%%%%%%%%%%
+%%%%%%%%%%%%
+%% %
+%% Margins %
+%% %
+%%%%%%%%%%%%
\newenvironment{mychangemargin}[2]
{\begin{list}{}{%
@@ -59,20 +81,23 @@
}%
{\end{list}}
-%%%%%%%%%%%%%%%
-% %
-% Other stuff %
-% %
-%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%
+%% %
+%% Other stuff %
+%% %
+%%%%%%%%%%%%%%%%
\DeclareRobustCommand{\mylang}[2][english]{%
\foreignlanguage{#1}{{z#2}}} %{\color{blue}{#2}}}
-% ------------
-% pdf metadata
-% ------------
+%% ------------
+%% pdf metadata
+%% ------------
\DeclareRobustCommand{\mypdfsubject}[1]{\def\@pdfsubject{#1}}
\DeclareRobustCommand{\mypdfauthor}[1]{\def\@pdfauthor{#1}}
\DeclareRobustCommand{\mypdftitle}[1]{\def\@pdftitle{#1}}
+\endinput
+%%
+%% End of file `mycv_misc.def'.
diff --git a/Master/texmf-dist/tex/latex/mycv/mycv_style.sty b/Master/texmf-dist/tex/latex/mycv/mycv_style.sty
index 26e4a110870..57db144615d 100644
--- a/Master/texmf-dist/tex/latex/mycv/mycv_style.sty
+++ b/Master/texmf-dist/tex/latex/mycv/mycv_style.sty
@@ -1,21 +1,38 @@
-% -------------------------------------------------------
-% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
-% This work may be distributed and/or modified under the
-% conditions of the LaTeX Project Public License version
-% 1.3c, available at 'http://www.latex-project.org/lppl'.
-% -------------------------------------------------------
-
+%%
+%% This is file `mycv_style.sty',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% mycv.dtx (with options: `mycv-style.sty')
+%% --------------------------------------------------------
+%% Author: Andrea Ghersi
+%% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
+%%
+%% This work may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License version
+%% 1.3c, available at 'http://www.latex-project.org/lppl'.
+%%
+%% This work has the LPPL maintenance status "maintained".
+%% The Current Maintainer of this work is Andrea Ghersi.
+%%
+%% This work consists of the files listed in the README
+%% file.
+%% --------------------------------------------------------
+
+\NeedsTeXFormat{LaTeX2e}
\RequirePackage{svn-prov}
+
\input{mycv_version.def}
\ProvidesPackageSVN
- {$Id: mycv_style.sty 85 2012-05-12 17:07:42Z ghangenit $}
+ {$Id: mycv_style.sty 89 2012-05-19 18:23:03Z ghangenit $}
[v\@versionstr][Default style file]
\RequirePackage{titlesec} % for title format and spacing
\RequirePackage{fancyhdr} % for custom headers and footers
\RequirePackage{xcolor} % for colors
-\RequirePackage{calligra} % for the calligra font
+\RequirePackage{calligra} % for the calligra font
\RequirePackage{times} % for times font
\RequirePackage{pifont} % for the ’ding’ style (itemize environment)
\RequirePackage{marvosym} % symbols - phone
@@ -23,16 +40,16 @@
\RequirePackage{hyperref} % for hypertext links and other stuff
\RequirePackage{xparse} % for commands with multiple default arguments
-%%%%%%%%%%%
-% %
-% Layout %
-% %
-%%%%%%%%%%%
+%%%%%%%%%%%%
+%% %
+%% Layout %
+%% %
+%%%%%%%%%%%%
-% -----------------------------------------------------
-% passing the option 'showframe' to the package permits
-% to see the page margins: that may be useful for debug
-% -----------------------------------------------------
+%% -----------------------------------------------------
+%% passing the option 'showframe' to the package permits
+%% to see the page margins: that may be useful for debug
+%% -----------------------------------------------------
\RequirePackage[
paperwidth=210mm,
paperheight=297mm,
@@ -41,11 +58,11 @@
columnsep=18pt
]{geometry}
-%%%%%%%%%%%%%%%%%%%%%
-% %
-% Header and footer %
-% %
-%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%
+%% %
+%% Header and footer %
+%% %
+%%%%%%%%%%%%%%%%%%%%%%
\renewcommand{\headrulewidth}{0.0pt}
@@ -57,34 +74,34 @@
\pagestyle{fancy}
-%%%%%%%%%%%%%%%%%%%%%%%%
-% %
-% Hyperref and colours %
-% %
-%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%
+%% %
+%% Hyperref and colours %
+%% %
+%%%%%%%%%%%%%%%%%%%%%%%%%
-% ------------------------------------------
-% setup colours for links, text and headings
-% ------------------------------------------
+%% ------------------------------------------
+%% setup colours for links, text and headings
+%% ------------------------------------------
\definecolor{mylinkcolour}{HTML}{0000FF} % {FF0080} %light purple link for the email
\definecolor{myshadecolor}{HTML}{F0F0F0} % {E4E3E3}%{D4D7FE} %light blue shade
\definecolor{mytextcolor}{HTML}{2b2b2b} % text is almost black
\definecolor{myheadingscolor}{HTML}{701112} % dark red
-% ----------------------
-% setup hyperref package
-% ----------------------
+%% ----------------------
+%% setup hyperref package
+%% ----------------------
\hypersetup{%
colorlinks,breaklinks,%
urlcolor=mylinkcolour,%
linkcolor=mylinkcolour,%
}
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% %
-% Section title format and spacing %
-% %
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% %
+%% Section title format and spacing %
+%% %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\DeclareDocumentCommand{\mysectionTitleFormat}%
{O{myheadingscolor} O{myheadingscolor}}%
@@ -103,23 +120,26 @@
\mysectionTitleFormat
\mysectionTitleSpacing
-%%%%%%%%%%%%%%%%%%%
-% %
-% Customized list %
-% %
-%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%
+%% %
+%% Customized list %
+%% %
+%%%%%%%%%%%%%%%%%%%%
\newenvironment{myitemize}%
{\renewcommand{\labelitemi}{\ding{43}}\begin{itemize}}%
{\end{itemize}}
-%%%%%%%%%%%%%%%
-% %
-% Other stuff %
-% %
-%%%%%%%%%%%%%%%
-
-% --------------------------------
-% set text color for the whole doc
-% --------------------------------
-\color{mytextcolor} \ No newline at end of file
+%%%%%%%%%%%%%%%%
+%% %
+%% Other stuff %
+%% %
+%%%%%%%%%%%%%%%%
+
+%% --------------------------------
+%% set text color for the whole doc
+%% --------------------------------
+\color{mytextcolor}
+\endinput
+%%
+%% End of file `mycv_style.sty'.
diff --git a/Master/texmf-dist/tex/latex/mycv/mycv_version.def b/Master/texmf-dist/tex/latex/mycv/mycv_version.def
index fa8c2194436..bb9e346e336 100644
--- a/Master/texmf-dist/tex/latex/mycv/mycv_version.def
+++ b/Master/texmf-dist/tex/latex/mycv/mycv_version.def
@@ -1 +1,25 @@
-\def\@versionstr{1.5.5} \ No newline at end of file
+%%
+%% This is file `mycv_version.def',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% mycv.dtx (with options: `mycv-version.def')
+%% --------------------------------------------------------
+%% Author: Andrea Ghersi
+%% Copyright 2012 Ghersi Andrea (ghanhawk@gmail.com).
+%%
+%% This work may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License version
+%% 1.3c, available at 'http://www.latex-project.org/lppl'.
+%%
+%% This work has the LPPL maintenance status "maintained".
+%% The Current Maintainer of this work is Andrea Ghersi.
+%%
+%% This work consists of the files listed in the README
+%% file.
+%% --------------------------------------------------------
+\def\@versionstr{1.5.6}
+\endinput
+%%
+%% End of file `mycv_version.def'.