Added Latex-stuff for moderncv, changed color/fonts in i3 and termite

This commit is contained in:
TuDatTr
2018-01-02 21:52:58 +01:00
parent 049303bbe8
commit 589d333a61
9 changed files with 93 additions and 64 deletions

26
Latex-Templates/cv.tex Normal file
View File

@@ -0,0 +1,26 @@
\documentclass[12pt,a4paper,sans]{moderncv}
\usepackage[utf8]{inputenc}
\usepackage[a4paper, top=1.5cm, margin=2.5cm]{geometry}
\usepackage{tikz}
\usepackage{xcolor}
\definecolor{white}{RGB}{255,255,255}
\definecolor{blue}{HTML}{3970AB}
\definecolor{gray}{HTML}{B9B9B9}
\definecolor{mint}{HTML}{50B48A}
\newcommand\skill[1]{
\begin{tikzpicture}
\foreach [count=\i] \x/\y in {#1}
{
\draw[fill=gray, gray] (0,\i) rectangle (\y,\i+0.4);
\draw[fill=white,mint](0,\i) rectangle (\x,\i+0.4);
}
\end{tikzpicture}
}
\newcommand{\givenskill}{}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "../CV"
%%% End: