Skip to content

Commit

Permalink
travis please...
Browse files Browse the repository at this point in the history
  • Loading branch information
rodluger committed Apr 17, 2018
1 parent 9a18aed commit dc084ec
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 31 deletions.
24 changes: 18 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
sudo: false
sudo: required

language: python
dist: trusty

python:
- "3.6"
os: osx

install:
- pip install ads titlecase
language: C

install: |
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
bash miniconda.sh -b -p $HOME/miniconda
export PATH="$HOME/miniconda/bin:$PATH"
hash -r
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda info -a
conda create --yes -n test python=3.6
conda activate test
conda install -c conda-forge numpy
pip install ads
pip install titlecase
addons:
apt:
Expand Down
2 changes: 1 addition & 1 deletion cv.tex
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

\begin{document}

\header{}{}
\header

%----------------------------------------------------------------------------------------
% COORDINATES
Expand Down
53 changes: 29 additions & 24 deletions luger-cv.cls
Original file line number Diff line number Diff line change
Expand Up @@ -69,36 +69,41 @@

\RequirePackage[quiet]{fontspec}

%\RequirePackage[math-style=TeX,vargreek-shape=unicode]{unicode-math}
%\newfontfamily\bodyfont[]{Helvetica Neue}
%\newfontfamily\thinfont[]{Helvetica Neue UltraLight}
%\newfontfamily\headingfont[]{Helvetica Neue Condensed Bold}
%\defaultfontfeatures{Mapping=tex-text}
%\setmainfont[Mapping=tex-text, Color=textcolor]{Helvetica Neue Light}

\newfontfamily\headingfont[Path=fonts/]{Lato-Bold.ttf}
\newfontfamily\headingfont[]{Helvetica Neue Condensed Bold}
\defaultfontfeatures{Mapping=tex-text}
\setmainfont[Mapping=tex-text, Color=textcolor, Path=fonts/]{Lato-Light.ttf}
\setmainfont[Mapping=tex-text, Color=textcolor]{Helvetica Neue Light}

%\newfontfamily\headingfont[Path=fonts/]{Lato-Bold.ttf}
%\defaultfontfeatures{Mapping=tex-text}
%\setmainfont[Mapping=tex-text, Color=textcolor, Path=fonts/]{Lato-Light.ttf}

%%%%%%%%%%
% Header %
%%%%%%%%%%

\RequirePackage{tikz}


\newcommand{\header}[2]{%
\begin{tikzpicture}[remember picture,overlay]
\node [rectangle, fill=white, anchor=north, minimum width=0.95\paperwidth,
minimum height=4cm] (box) at (current page.north)
{\includegraphics[width=0.95\paperwidth]{header_moon.pdf}};
\node [anchor=center] (name) at (box) {%
\fontsize{40pt}{72pt}\color{gray}%
\raisebox{3em}{{\headingfont #1 #2}}
};
\end{tikzpicture}
\vspace{2.333cm}
\vspace{-2\parskip}
% \RequirePackage{tikz}
% \newcommand{\header}[2]{%
% \begin{tikzpicture}[remember picture,overlay]
% \node [rectangle, fill=white, anchor=north, minimum width=0.95\paperwidth,
% minimum height=4cm] (box) at (current page.north)
% {\includegraphics[width=0.95\paperwidth]{header_moon.pdf}};
% \node [anchor=center] (name) at (box) {%
% \fontsize{40pt}{72pt}\color{gray}%
% \raisebox{3em}{{\headingfont #1 #2}}
% };
% \end{tikzpicture}
% \vspace{2.333cm}
% \vspace{-2\parskip}
% }

\newcommand{\header}{%
{
\vspace*{-1in}
\hspace*{-2.125in}
\centering
\includegraphics[width=0.95\paperwidth]{header_moon.pdf}
\vspace*{-0.1in}
}
}


Expand Down

0 comments on commit dc084ec

Please sign in to comment.