more stuff
This commit is contained in:
parent
7323297388
commit
baf14f1c51
10 changed files with 16 additions and 77 deletions
15
Makefile
15
Makefile
|
@ -1,22 +1,19 @@
|
||||||
.DEFAULT_GOAL := default
|
.DEFAULT_GOAL := default
|
||||||
|
|
||||||
|
default: all
|
||||||
all: cv résumé pubs
|
all: cv résumé pubs
|
||||||
|
|
||||||
#default: cv résumé
|
|
||||||
|
|
||||||
## Build CV
|
## Build CV
|
||||||
cv: Paul_Lesur_CV.pdf
|
cv: build/Paul_Lesur_CV.pdf
|
||||||
|
|
||||||
## Build résumé
|
## Build résumé
|
||||||
resume: Paul_Lesur_résumé.pdf
|
résumé: build/Paul_Lesur_résumé.pdf
|
||||||
|
|
||||||
## Build publication list
|
## Build publication list
|
||||||
pubs: Paul_Lesur_publications.pdf
|
pubs: build/Paul_Lesur_publications.pdf
|
||||||
|
|
||||||
%.pdf: %.tex
|
build/%.pdf: %.tex ./common/*
|
||||||
xelatex $*
|
latexmk -xelatex -verbose -file-line-error -synctex=1 $*
|
||||||
biber $*
|
|
||||||
xelatex $*
|
|
||||||
|
|
||||||
## Cleanup build files
|
## Cleanup build files
|
||||||
clean:
|
clean:
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
%! Tex program = xelatex
|
%! Tex program = xelatex
|
||||||
\documentclass[hidelinks]{./template/friggeri-cv-a4}
|
\documentclass[hidelinks]{template/friggeri-cv-a4}
|
||||||
\input{preamble.tex}
|
\input{common/preamble.tex}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\input{./content/résumé.tex}
|
\input{common/résumé.tex}
|
||||||
|
|
||||||
\section{Publications / articles}
|
\section{Publications / articles}
|
||||||
|
|
||||||
|
|
|
@ -1,67 +1,9 @@
|
||||||
%! Tex program = xelatex
|
%! Tex program = xelatex
|
||||||
|
\documentclass[hidelinks]{template/friggeri-cv-a4}
|
||||||
%\documentclass{article}
|
\input{common/preamble.tex}
|
||||||
%
|
|
||||||
%%\usepackage[backend=biber]{biblatex}
|
|
||||||
%\usepackage[backend=biber, sorting=nymdt]{biblatex} %backend=biber is 'better'
|
|
||||||
%\addbibresource{bibliography.bib} % Specify the bibliography file to include publications
|
|
||||||
%
|
|
||||||
%
|
|
||||||
%\DeclareSortingTemplate{nymdt}{
|
|
||||||
% \sort{
|
|
||||||
% \field{presort}
|
|
||||||
% }
|
|
||||||
% \sort[direction=descending]{
|
|
||||||
% \field{sortyear}
|
|
||||||
% \field{year}
|
|
||||||
% \literal{9999}
|
|
||||||
% }
|
|
||||||
% \sort[direction=descending]{
|
|
||||||
% \field[padside=left,padwidth=2,padchar=0]{month}
|
|
||||||
% \literal{99}
|
|
||||||
% }
|
|
||||||
% \sort[direction=descending]{
|
|
||||||
% \field[padside=left,padwidth=2,padchar=0]{day}
|
|
||||||
% \literal{99}
|
|
||||||
% }
|
|
||||||
% \sort{
|
|
||||||
% \field{sorttitle}
|
|
||||||
% }
|
|
||||||
% \sort[direction=descending]{
|
|
||||||
% \field[padside=left,padwidth=4,padchar=0]{volume}
|
|
||||||
% \literal{9999}
|
|
||||||
% }
|
|
||||||
%}
|
|
||||||
%
|
|
||||||
%\defbibfilter{papers}{
|
|
||||||
% type=article or
|
|
||||||
% type=inproceedings
|
|
||||||
%}
|
|
||||||
%
|
|
||||||
%\begin{document}
|
|
||||||
%%\printbibsectionnoheader{inproceedings}{}
|
|
||||||
%%\printbibsectionnoheader{article}{} % Print all articles from the bibliography
|
|
||||||
%\DeclareFieldFormat{labelnumberwidth}{\mkbibbold{#1\adddot}~}
|
|
||||||
%\setlength{\biblabelsep}{0pt}
|
|
||||||
%\section*{Paul Lesur}
|
|
||||||
%\subsection*{Publications}
|
|
||||||
%%\bibliographystyle{unsrt}
|
|
||||||
% \begin{refsection}
|
|
||||||
% \nocite{*}
|
|
||||||
% %\printbibliography[type = inproceedings le, heading = none, title = {Peer-reviewed conferences/proceedings}]
|
|
||||||
% %\printbibliography[type = inproceedings, heading = none, title = {Peer-reviewed conferences/proceedings}]
|
|
||||||
% \printbibliography[filter = papers, heading = none]
|
|
||||||
% %\printbibliography[type = {article}, heading = none, title = {article in peer-reviewed journal}]
|
|
||||||
% \end{refsection}
|
|
||||||
%\printbibliography
|
|
||||||
%\end{document}
|
|
||||||
|
|
||||||
|
|
||||||
\documentclass[hidelinks]{./template/friggeri-cv-a4}
|
|
||||||
\input{preamble.tex}
|
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
%\section{Publications / articles}
|
\section{Publications}
|
||||||
|
|
||||||
\printbibsectionnoheader{inproceedings}{Peer-reviewed conferences/proceedings}
|
\printbibsectionnoheader{inproceedings}{Peer-reviewed conferences/proceedings}
|
||||||
\printbibsectionnoheader{article}{article in peer-reviewed journal} % Print all articles from the bibliography
|
\printbibsectionnoheader{article}{article in peer-reviewed journal} % Print all articles from the bibliography
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
%! Tex program = xelatex
|
%! Tex program = xelatex
|
||||||
\documentclass[hidelinks]{friggeri-cv-a4}
|
\documentclass[hidelinks]{template/friggeri-cv-a4}
|
||||||
\input{preamble.tex}
|
\input{common/preamble.tex}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\input{./content/résumé.tex}
|
\input{common/résumé.tex}
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|
||||||
|
|
BIN
build/Paul_Lesur_CV.synctex.gz
Normal file
BIN
build/Paul_Lesur_CV.synctex.gz
Normal file
Binary file not shown.
BIN
build/Paul_Lesur_publications.synctex.gz
Normal file
BIN
build/Paul_Lesur_publications.synctex.gz
Normal file
Binary file not shown.
BIN
build/Paul_Lesur_résumé.synctex.gz
Normal file
BIN
build/Paul_Lesur_résumé.synctex.gz
Normal file
Binary file not shown.
|
@ -1,5 +1,5 @@
|
||||||
\usepackage[backend=biber]{biblatex}
|
\usepackage[backend=biber]{biblatex}
|
||||||
\addbibresource{bibliography.bib} % Specify the bibliography file to include publications
|
\addbibresource{common/bibliography.bib} % Specify the bibliography file to include publications
|
||||||
|
|
||||||
\definecolor{darkgreen}{HTML}{036E03}
|
\definecolor{darkgreen}{HTML}{036E03}
|
||||||
\definecolor{lightgreen}{HTML}{50D050}
|
\definecolor{lightgreen}{HTML}{50D050}
|
Loading…
Reference in a new issue