Added \PrintableMode from original spidercv.cls
This commit is contained in:
parent
7dd6437ab8
commit
d0aeb036cb
@ -6,7 +6,7 @@
|
|||||||
% 🄯 2022
|
% 🄯 2022
|
||||||
% Some right reserved
|
% Some right reserved
|
||||||
%
|
%
|
||||||
% @version v0.0.1 (2022-09-29)
|
% @version v0.0.2 (2023-0)
|
||||||
%
|
%
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
@ -25,6 +25,9 @@
|
|||||||
\usepackage{fp}
|
\usepackage{fp}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
|
\PrintableMode % Make the CV printable
|
||||||
|
|
||||||
\newcounter{dateone}%
|
\newcounter{dateone}%
|
||||||
\newcounter{datetwo}%
|
\newcounter{datetwo}%
|
||||||
|
|
||||||
@ -32,7 +35,6 @@
|
|||||||
\setmydatenumber{datetwo}{\the\year}{\the\month}{\the\day}%
|
\setmydatenumber{datetwo}{\the\year}{\the\month}{\the\day}%
|
||||||
\FPsub\result{\thedatetwo}{\thedateone}
|
\FPsub\result{\thedatetwo}{\thedateone}
|
||||||
\FPdiv\myage{\result}{365.2425}
|
\FPdiv\myage{\result}{365.2425}
|
||||||
\myage
|
|
||||||
\FPtrunc\myage{\myage}{0}
|
\FPtrunc\myage{\myage}{0}
|
||||||
%----------------------------------------------------------------------------------------
|
%----------------------------------------------------------------------------------------
|
||||||
% TOP BAR
|
% TOP BAR
|
||||||
|
@ -1 +0,0 @@
|
|||||||
\relax
|
|
14
tex/mycv.cls
14
tex/mycv.cls
@ -55,6 +55,14 @@
|
|||||||
|
|
||||||
\DefineColorMacros{White}{Black}{GreenIT}{Black}{GreenArmy}
|
\DefineColorMacros{White}{Black}{GreenIT}{Black}{GreenArmy}
|
||||||
|
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
% Printable mode
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
\newcommand{\PrintableMode}{
|
||||||
|
\def\PM{} % PM command used in if statements
|
||||||
|
\def\ColorTextSide{\ColorTextMain} % Use same text color everywhere
|
||||||
|
}
|
||||||
|
|
||||||
%----------------------------------------------------------------------------------------
|
%----------------------------------------------------------------------------------------
|
||||||
% FONTS
|
% FONTS
|
||||||
%----------------------------------------------------------------------------------------
|
%----------------------------------------------------------------------------------------
|
||||||
@ -97,7 +105,11 @@
|
|||||||
\newenvironment{SideBar}[2]
|
\newenvironment{SideBar}[2]
|
||||||
{% Background color, Text color
|
{% Background color, Text color
|
||||||
\begin{tikzpicture}[remember picture,overlay]% put text anywhere
|
\begin{tikzpicture}[remember picture,overlay]% put text anywhere
|
||||||
\fill[fill=#1, shift={(current page.north west)}] % side and top background
|
\ifx\PM\undefined % side and top background
|
||||||
|
\fill[fill=#1, shift={(current page.north west)}]
|
||||||
|
\else
|
||||||
|
\draw[draw=#1, shift={(current page.north west)}, very thick]
|
||||||
|
\fi
|
||||||
(0,-\paperheight) --
|
(0,-\paperheight) --
|
||||||
(0,-\anglesize) --
|
(0,-\anglesize) --
|
||||||
(\anglesize,0) --
|
(\anglesize,0) --
|
||||||
|
219
tex/spidercv.cls
Normal file
219
tex/spidercv.cls
Normal file
@ -0,0 +1,219 @@
|
|||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
% Spider CV
|
||||||
|
% LaTeX Class
|
||||||
|
% Version 1.1 (08/10/22)
|
||||||
|
%
|
||||||
|
% Name like this because of the spider chart widget.
|
||||||
|
%
|
||||||
|
% Authors:
|
||||||
|
% ROMAINPC
|
||||||
|
% Inspired by developercv (Jan Vorisek)
|
||||||
|
% Inspired by developercv Doji variant (Stijn Dejongh)
|
||||||
|
% Inspired by limecv (Olivier Pieters)
|
||||||
|
% Inspired by altacv (LianTze Lim)
|
||||||
|
%
|
||||||
|
% License:
|
||||||
|
% The MIT License (see included LICENSE file)
|
||||||
|
%
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
|
\ProvidesClass{spidercv}[03/01/2022]
|
||||||
|
|
||||||
|
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{extarticle}} % Pass through any options to the base class
|
||||||
|
\ProcessOptions\relax % Process given options
|
||||||
|
|
||||||
|
\LoadClass{extarticle} % Load the baspidercvse class
|
||||||
|
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
\setlength{\parindent}{0mm} % Suppress paragraph indentation
|
||||||
|
\usepackage[hidelinks]{hyperref} % Required for links but hide the default boxes around links
|
||||||
|
\newcommand{\lorem}{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus.} % Dummy text
|
||||||
|
\pagestyle{empty} % No headers or footers
|
||||||
|
\usepackage{moresize} % Provides more font size commands (\HUGE and \ssmall)
|
||||||
|
\usepackage{fontawesome} % fontawesomspidercv----------------------------------------------------
|
||||||
|
\usepackage[dvipsnames]{xcolor}
|
||||||
|
|
||||||
|
\definecolor{Black}{HTML}{212121}
|
||||||
|
\definecolor{White}{HTML}{FFFFFF}
|
||||||
|
\definecolor{GreenArmy}{HTML}{252e25}
|
||||||
|
\definecolor{GreenIT}{HTML}{4caf50}
|
||||||
|
|
||||||
|
%%%%% color macros, use it at the beginning of your cv to quickly use the enterprise colors (Pro HRD tips)
|
||||||
|
\newcommand{\DefineColorMacros}[5]{% COLORS : TextSide / TextMain / HighLight / Background /Other
|
||||||
|
\def\ColorTextSide{#1}
|
||||||
|
\def\ColorTextMain{#2}
|
||||||
|
\def\ColorHighlight{#3}
|
||||||
|
\def\ColorBackground{#4}spidercv
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
% Printable mode
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
\newcommand{\PrintableMode}{
|
||||||
|
\def\PM{} % PM command used in if statements
|
||||||
|
\def\ColorTextSide{\ColorTextMain} % Use same text color everywhere
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
% FONTS
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
\usepackage[utf8]{inputenc} % Required for inputting international characters
|
||||||
|
\usepackage[T1]{fontenc} % Output font encoding for international characters
|
||||||
|
|
||||||
|
% \usepackage{roboto}
|
||||||
|
\usepackage[scaled]{helvet}
|
||||||
|
|
||||||
|
|
||||||
|
\renewcommand*\familydefault{\sfdefault} % Force the sans-serif version of any font used
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
% GEOMETRIE
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
\usepackage{calc}
|
||||||
|
\usepackage{tikz}
|
||||||
|
\usetikzlibrary{calc,positioning,backgrounds,matrix}
|
||||||
|
|
||||||
|
\newlength\margin
|
||||||
|
\setlength\margin{0.5cm}
|
||||||
|
\usepackage[margin=\margin,noheadfoot,a4paper]{geometry}
|
||||||
|
\newlength\sidewidth
|
||||||
|
\setlength\sidewidth{0.33333\paperwidth-2\margin}
|
||||||
|
\newlength\mainwidth
|
||||||
|
\setlength\mainwidth{\paperwidth-4\margin-\sidewidth}
|
||||||
|
\newlength\anglesize
|
||||||
|
\setlength\anglesize{0.7cm}
|
||||||
|
\newlength\topheight
|
||||||
|
\setlength\topheight{\sidewidth}
|
||||||
|
\newlength\profilesize
|
||||||
|
\setlength\profilesize{0.7\topheight}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
% MAIN SECTIONS
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
\usepackage{ragged2e}
|
||||||
|
\usepackage[absolute,overlay]{textpos} % option needed to use absolute positionning and to have text on front
|
||||||
|
|
||||||
|
\newenvironment{SideBar}[2]{% Background color, Text color
|
||||||
|
\begin{tikzpicture}[remember picture,overlay]% put text anywhere
|
||||||
|
|
||||||
|
\ifx\PM\undefined % side and top background
|
||||||
|
\fill[fill=#1, shift={(current page.north west)}]
|
||||||
|
\else
|
||||||
|
\draw[draw=#1, shift={(current page.north west)}, very thick]
|
||||||
|
\fi
|
||||||
|
% \fill[fill=#1, shift={(current page.north west)}]
|
||||||
|
(0,-\paperheight) --
|
||||||
|
(0,-\anglesize) --
|
||||||
|
(\anglesize,0) --
|
||||||
|
(\paperwidth,0) --
|
||||||
|
(\paperwidth,-\topheight-2\margin) --
|
||||||
|
(\sidewidth+2\margin+\anglesize,-\topheight-2\margin) --
|
||||||
|
(\sidewidth+2\margin,-\topheight-2\margin-\anglesize) --
|
||||||
|
(\sidewidth+2\margin,-\paperheight) --
|
||||||
|
cycle;
|
||||||
|
\draw [draw=#1, shift={(current page.north west)}, very thick]
|
||||||
|
(\paperwidth-0.5\margin,-\topheight-3\margin) --
|
||||||
|
(\paperwidth-0.5\margin,-\paperheight+0.5\margin+0.5\anglesize) --
|
||||||
|
(\paperwidth-0.5\margin-0.5\anglesize,-\paperheight+0.5\margin) --
|
||||||
|
(\sidewidth+3\margin,-\paperheight+0.5\margin);
|
||||||
|
\end{tikzpicture}%
|
||||||
|
%%%%%%%%%%%%%
|
||||||
|
% \TPmargin{}{}
|
||||||
|
\begin{textblock*}{\sidewidth}(\margin,\topheight + 3\margin -0.4cm)
|
||||||
|
\begin{center}
|
||||||
|
\color{#2}
|
||||||
|
% Please use vspace to verticaly align manually your content
|
||||||
|
}{
|
||||||
|
\end{center}
|
||||||
|
\end{textblock*}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
\newenvironment{TopBar}[1]{ % Text color
|
||||||
|
\begin{textblock*}{\mainwidth}(\sidewidth+3\margin,\margin-0.4cm)
|
||||||
|
\begin{center}
|
||||||
|
\color{#1}
|
||||||
|
}{
|
||||||
|
\end{center}
|
||||||
|
\end{textblock*}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
\newenvironment{MainPart}{
|
||||||
|
\begin{textblock*}{\mainwidth}(\sidewidth+3\margin,\topheight + 3\margin-0.4cm)
|
||||||
|
\begin{center}
|
||||||
|
}{
|
||||||
|
\end{center}
|
||||||
|
\end{textblock*}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
\usetikzlibrary{shapes,decorations}
|
||||||
|
|
||||||
|
%%%%%%% Picture
|
||||||
|
\newcommand{\DefineProfile}[3]% Background color, Highlight color, Img path
|
||||||
|
{
|
||||||
|
\begin{tikzpicture}[remember picture,overlay]
|
||||||
|
\node [rectangle, draw=#2, rounded corners=0.5mm, very thick,
|
||||||
|
shift={(current page.north west)}, xshift=\anglesize, yshift=-\anglesize,
|
||||||
|
](s1){};
|
||||||
|
\node [rectangle, draw=#2, rounded corners=0.5mm, very thick,
|
||||||
|
shift={(current page.north west)}, xshift=(\sidewidth+2\margin), yshift=-(\sidewidth+2\margin),
|
||||||
|
](s2){};
|
||||||
|
\draw [draw=#2, very thick]
|
||||||
|
(s1) -- (s2);
|
||||||
|
%%%%%%%%%%%%%%%
|
||||||
|
\def\backcolor{\ifx\PM\undefined#1\else White\fi}
|
||||||
|
\node[
|
||||||
|
shift={(current page.north west)},
|
||||||
|
xshift=(\sidewidth+2\margin)/2,
|
||||||
|
yshift=-(\sidewidth+2\margin)/2,
|
||||||
|
chamfered rectangle, draw=#2, very thick,
|
||||||
|
minimum size=\profilesize,
|
||||||
|
fill=\backcolor,
|
||||||
|
path picture={
|
||||||
|
\node at (path picture bounding box.center){
|
||||||
|
\includegraphics[height=\profilesize]{#3}
|
||||||
|
};
|
||||||
|
}]
|
||||||
|
{};
|
||||||
|
\end{tikzpicture}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
% COMMANDS AND ENVIRONMENTS
|
||||||
|
%----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
%%%%%%% Top bar
|
||||||
|
|
||||||
|
%%% Name
|
||||||
|
\newcommand{\Name}[4]% Highlight color, Name, Profession, Age
|
||||||
|
{
|
||||||
|
{\HUGE{\textbf{\color{#1}#2}}\\
|
||||||
|
\Large{#3}
|
||||||
|
\hfill
|
||||||
|
\Large{#4}}
|
||||||
|
}
|
||||||
|
|
||||||
|
%%%%%%%%% Side bar
|
||||||
|
|
||||||
|
%%% Spider chart
|
||||||
|
\usepackage{xparse}
|
||||||
|
\newcounter{spidercount}
|
||||||
|
\ExplSyntaxOn
|
||||||
|
\NewDocumentCommand{\newList}{m}
|
||||||
|
{
|
||||||
|
\seq_new:c { l_kees_list_#1_seq }
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user