diff options
Diffstat (limited to 'Master/texmf-dist/tex/latex/mycv/mycv.cls')
-rw-r--r-- | Master/texmf-dist/tex/latex/mycv/mycv.cls | 91 |
1 files changed, 48 insertions, 43 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'. |