Update paths in Makefile and latexmkrc
This commit is contained in:
parent
00adf52ea7
commit
bc556c91e4
|
@ -1,18 +1,7 @@
|
||||||
Input/CV-Amin-Kasrou-Aouam-en.tex
|
input/*.tex
|
||||||
Input/CV-Amin-Kasrou-Aouam-es.tex
|
output/*.tex
|
||||||
Input/CV-Amin-Kasrou-Aouam-en.xdv
|
*.log
|
||||||
Input/CV-Amin-Kasrou-Aouam-es.xdv
|
*.xdv
|
||||||
Input/auto
|
*.aux
|
||||||
Output/CV-Amin-Kasrou-Aouam-en.tex
|
*.fls
|
||||||
Output/CV-Amin-Kasrou-Aouam-es.tex
|
*.fdb_latexmk
|
||||||
Output/CV-Amin-Kasrou-Aouam-en.xdv
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-es.xdv
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-en.aux
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-en.fdb_latexmk
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-en.fls
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-en.log
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-es.aux
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-es.fdb_latexmk
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-es.fls
|
|
||||||
Output/CV-Amin-Kasrou-Aouam-es.log
|
|
||||||
Output/auto
|
|
||||||
|
|
22
Makefile
22
Makefile
|
@ -8,7 +8,6 @@ latex_quiet := true
|
||||||
# Otherwise these files will be regenerated only when the source markdown
|
# Otherwise these files will be regenerated only when the source markdown
|
||||||
# changes; in that case, if you change other dependencies (e.g. a
|
# changes; in that case, if you change other dependencies (e.g. a
|
||||||
# bibliography), use the -B option to make in order to force regeneration.
|
# bibliography), use the -B option to make in order to force regeneration.
|
||||||
# always_latexmk := true
|
|
||||||
always_latexmk := true
|
always_latexmk := true
|
||||||
|
|
||||||
# Set to anything non-empty to use xelatex rather than pdflatex. I always do
|
# Set to anything non-empty to use xelatex rather than pdflatex. I always do
|
||||||
|
@ -17,7 +16,7 @@ always_latexmk := true
|
||||||
xelatex := true
|
xelatex := true
|
||||||
|
|
||||||
# list of markdown files that are not to be made into PDFs
|
# list of markdown files that are not to be made into PDFs
|
||||||
EXCLUDE := README.org
|
EXCLUDE :=
|
||||||
|
|
||||||
# Extra options to pandoc (e.g. "-H mypreamble.tex")
|
# Extra options to pandoc (e.g. "-H mypreamble.tex")
|
||||||
PANDOC_OPTIONS :=
|
PANDOC_OPTIONS :=
|
||||||
|
@ -30,16 +29,13 @@ PANDOC_TMPL := assets/one-column.tex
|
||||||
|
|
||||||
## ---- subdirectories (normally, no need to change) ----
|
## ---- subdirectories (normally, no need to change) ----
|
||||||
|
|
||||||
# source of YAML spec files
|
|
||||||
#yml_dir := .
|
|
||||||
|
|
||||||
# temporary file subdirectory; will be removed after every latex run
|
# temporary file subdirectory; will be removed after every latex run
|
||||||
temp_dir := tmp
|
TEMP_DIR := tmp
|
||||||
|
|
||||||
# name of output directory for .pdf files
|
# name of output directory for .pdf files
|
||||||
out_dir := output
|
OUT_DIR := output
|
||||||
# name of input directory for .yml and .latex files
|
# name of input directory for .yml and .latex files
|
||||||
in_dir := input
|
IN_DIR := input
|
||||||
|
|
||||||
## ---- commands ----
|
## ---- commands ----
|
||||||
|
|
||||||
|
@ -52,18 +48,16 @@ LATEXMK := latexmk $(if $(xelatex),-xelatex,-pdflatex="pdflatex %O %S") \
|
||||||
|
|
||||||
## ---- build rules ----
|
## ---- build rules ----
|
||||||
|
|
||||||
ymls := $(filter-out $(addprefix $(in_dir)/,$(EXCLUDE)),$(wildcard $(in_dir)/*.yml))
|
ymls := $(filter-out $(addprefix $(IN_DIR)/,$(EXCLUDE)),$(wildcard $(IN_DIR)/*.yml))
|
||||||
pdfs_path := $(filter-out $(addprefix $(out_dir)/,$(EXCLUDE)),$(wildcard $(out_dir)/*.pdf))
|
pdfs_path := $(filter-out $(addprefix $(OUT_DIR)/,$(EXCLUDE)),$(wildcard $(OUT_DIR)/*.pdf))
|
||||||
texs := $(patsubst %.yml,%.tex,$(ymls))
|
texs := $(patsubst %.yml,%.tex,$(ymls))
|
||||||
pdfs := $(patsubst %.yml,%.pdf,$(ymls))
|
pdfs := $(patsubst %.yml,%.pdf,$(ymls))
|
||||||
bibs := $(wildcard $(in_dir)/*.bib)
|
bibs := $(wildcard $(IN_DIR)/*.bib)
|
||||||
|
|
||||||
$(texs): %.tex: %.yml $(bibs) $(PANDOC_TMPL)
|
$(texs): %.tex: %.yml $(bibs) $(PANDOC_TMPL)
|
||||||
$(PANDOC) -o $@ $<
|
$(PANDOC) -o $@ $<
|
||||||
|
|
||||||
phony_pdfs := $(if $(always_latexmk),$(pdfs) $(notes_pdf))
|
.PHONY: all clean
|
||||||
|
|
||||||
.PHONY: $(phony_pdfs) all clean
|
|
||||||
|
|
||||||
$(pdfs): %.pdf: %.tex
|
$(pdfs): %.pdf: %.tex
|
||||||
@echo $(bibs)
|
@echo $(bibs)
|
||||||
|
|
|
@ -1,432 +0,0 @@
|
||||||
% !TEX encoding = UTF-8 Unicode
|
|
||||||
|
|
||||||
\documentclass[letterpaper,11pt]{article}
|
|
||||||
|
|
||||||
%A Few Useful Packages
|
|
||||||
%\usepackage{marvosym}
|
|
||||||
\usepackage{fontspec} %for loading fonts
|
|
||||||
\usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting
|
|
||||||
\usepackage{graphicx}
|
|
||||||
\usepackage[usenames,dvipsnames]{xcolor}
|
|
||||||
\usepackage[left=1.3cm,
|
|
||||||
top=0.9cm,
|
|
||||||
right=1.3cm,
|
|
||||||
bottom=1.2cm,
|
|
||||||
nohead,
|
|
||||||
nofoot
|
|
||||||
]{geometry}
|
|
||||||
\usepackage{tabularx}
|
|
||||||
\usepackage{titlesec}
|
|
||||||
%\usepackage{tabto} % tab spacing
|
|
||||||
|
|
||||||
\usepackage{setspace} % line spacing
|
|
||||||
\usepackage{booktabs,colortbl} % thicker rules between table cells
|
|
||||||
\usepackage{bibentry} % bibliography
|
|
||||||
|
|
||||||
% SORTED LISTS
|
|
||||||
\usepackage{paralist}
|
|
||||||
\usepackage{datatool}% http://ctan.org/pkg/datatool
|
|
||||||
\newcommand{\sortitem}[1]{%
|
|
||||||
\DTLnewrow{list}% Create a new entry
|
|
||||||
\DTLnewdbentry{list}{description}{#1}% Add entry as description
|
|
||||||
}
|
|
||||||
\newenvironment{sortedlist}{%
|
|
||||||
\DTLifdbexists{list}{\DTLcleardb{list}}{\DTLnewdb{list}}% Create new/discard old list
|
|
||||||
}{%
|
|
||||||
\DTLsort{description}{list}% Sort list
|
|
||||||
\begin{inparaitem}[]%
|
|
||||||
\DTLforeach*{list}{\theDesc=description}{%
|
|
||||||
\item \theDesc, }% Print each item
|
|
||||||
\end{inparaitem}%
|
|
||||||
}
|
|
||||||
|
|
||||||
%Setup hyperref package, and colours for links
|
|
||||||
\usepackage[colorlinks,
|
|
||||||
breaklinks,
|
|
||||||
pagebackref=false,
|
|
||||||
debug=true,
|
|
||||||
xetex,
|
|
||||||
bookmarks=false,
|
|
||||||
pdfpagelabels=false,
|
|
||||||
hyperfootnotes=false,
|
|
||||||
hyperindex=false,
|
|
||||||
pageanchor=false]{hyperref}
|
|
||||||
\definecolor{linkcolor}{gray}{0.2}
|
|
||||||
\hypersetup{
|
|
||||||
pdfauthor={Amin Kasrou Aouam},
|
|
||||||
pdfsubject={Amin Kasrou Aouam - Resume},
|
|
||||||
pdftitle={Amin Kasrou Aouam - Resume},
|
|
||||||
urlcolor=linkcolor,
|
|
||||||
linkcolor=linkcolor
|
|
||||||
}
|
|
||||||
% colors
|
|
||||||
\definecolor{dark-gray}{gray}{0.15}
|
|
||||||
\definecolor{light-gray}{gray}{0.55}
|
|
||||||
|
|
||||||
%FONTS
|
|
||||||
\setmainfont{Liberation Serif}
|
|
||||||
\newfontfamily{\hlight}{Liberation Serif}
|
|
||||||
\defaultfontfeatures{Mapping=tex-text} % converts LaTeX specials (``quotes'' --- dashes etc.) to unicode
|
|
||||||
\usepackage{fontawesome5} % glyphs for contact info
|
|
||||||
|
|
||||||
% CUSTOM COMMANDS
|
|
||||||
\newcommand{\titlerulethick}{{%
|
|
||||||
{\color{dark-gray} \titlerule[0.5mm] }%
|
|
||||||
}}
|
|
||||||
|
|
||||||
% old section title format
|
|
||||||
\titleformat{\section}{\fontsize{28pt}{38pt}\color{dark-gray}\normalfont}{}{0mm}{}[\titlerulethick]
|
|
||||||
%\titlespacing{\section}{0pt}{3pt}{3pt}
|
|
||||||
|
|
||||||
\newcommand{\namefont}[1]{{%
|
|
||||||
\fontsize{42pt}{50pt}\normalfont\textbf{#1}%
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\spacerule}{
|
|
||||||
\addlinespace[0.5em]
|
|
||||||
\midrule[0.5mm]
|
|
||||||
\addlinespace[0.5em]
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\bigfont}[1]{{%
|
|
||||||
\fontsize{32pt}{38pt}\normalfont{#1} %
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\lightfont}[1]{{%
|
|
||||||
{\hlight#1}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\contactinfo}{%
|
|
||||||
{\hlight\color{dark-gray}}
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\lightsmall}[1]{{%
|
|
||||||
{\fontsize{11pt}{14pt}\hlight#1}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\pubstyle}[1]{{%
|
|
||||||
{\fontsize{10pt}{13pt}\hlight#1}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\lightbf}[1]{{%
|
|
||||||
\textbf{\lightfont{#1}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\emphasized}[1]{{%
|
|
||||||
{\fontsize{12pt}{14pt}\textbf{#1}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\position}[1]{{%
|
|
||||||
{\fontsize{12pt}{14pt} \hlight{#1}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\company}[1]{{%
|
|
||||||
{\fontsize{12pt}{14pt} \textbf{#1}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\headline}{
|
|
||||||
{\fontsize{14pt}{17pt}\bfseries\color{dark-gray}}
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\name}{
|
|
||||||
\raggedright\fontsize{38pt}{38pt}\bfseries\flushleft\color{dark-gray}{Amin
|
|
||||||
Kasrou Aouam}
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\lighthrule}{
|
|
||||||
{\color{light-gray}\par\rule[0mm]{\hsize}{0.5mm}\par\vspace{0.0em}}
|
|
||||||
}
|
|
||||||
|
|
||||||
% hack to remove bibliography numbering
|
|
||||||
\makeatletter
|
|
||||||
\renewcommand\@biblabel[1]{}
|
|
||||||
\renewenvironment{thebibliography}[1]
|
|
||||||
{\section*{\refname}%
|
|
||||||
\@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
|
|
||||||
\list{}%
|
|
||||||
{\leftmargin0pt
|
|
||||||
\@openbib@code
|
|
||||||
\usecounter{enumiv}}%
|
|
||||||
\sloppy
|
|
||||||
\clubpenalty4000
|
|
||||||
\@clubpenalty \clubpenalty
|
|
||||||
\widowpenalty4000%
|
|
||||||
\sfcode`\.\@m}
|
|
||||||
{\def\@noitemerr
|
|
||||||
{\@latex@warning{Empty `thebibliography' environment}}%
|
|
||||||
\endlist}
|
|
||||||
\makeatother
|
|
||||||
%
|
|
||||||
%-------------------- BEGIN DOCUMENT ----------------------
|
|
||||||
\begin{document}
|
|
||||||
%\nocite{}
|
|
||||||
\pagestyle{empty} % non-numbered pages
|
|
||||||
\font\fb=''[cmr10]'' %for use with \LaTeX command
|
|
||||||
%---------- SPECIFY LENGTHS ----------
|
|
||||||
\newlength{\leftwide}
|
|
||||||
\setlength{\leftwide}{0.34\textwidth}
|
|
||||||
%
|
|
||||||
\newlength{\centerwide}
|
|
||||||
\setlength{\centerwide}{0.33\textwidth}
|
|
||||||
%
|
|
||||||
\newlength{\rightwide}
|
|
||||||
\setlength{\rightwide}{0.28\textwidth}
|
|
||||||
%---------- TOP SECTION ----------
|
|
||||||
\begin{tabular}[b]{@{}p{\leftwide}@{}p{\centerwide}@{}p{\rightwide}@{}}
|
|
||||||
% NAME (left)
|
|
||||||
\noindent
|
|
||||||
\begin{minipage}[b]{\leftwide}
|
|
||||||
\name
|
|
||||||
\end{minipage} & %
|
|
||||||
% CONTACT INFO (middle)
|
|
||||||
\begin{minipage}[b]{\centerwide}
|
|
||||||
\renewcommand\arraystretch{1.25}
|
|
||||||
\contactinfo
|
|
||||||
\begin{tabular}[b]{@{}cl@{}}
|
|
||||||
\faEnvelope & \href{mailto:akasroua@gmail.com}{akasroua@gmail.com}\\ %{}
|
|
||||||
\faPhone & +34 658591161\\
|
|
||||||
\faGitlab & \href{https://gitlab.com/akasroua}{gitlab.com/akasroua}\\
|
|
||||||
\end{tabular}
|
|
||||||
\end{minipage} & %
|
|
||||||
% PHOTO (right)
|
|
||||||
\begin{minipage}[b]{\rightwide}
|
|
||||||
\includegraphics[width=7em]{Assets/photo.png}
|
|
||||||
\end{minipage}
|
|
||||||
\end{tabular}
|
|
||||||
%---------- MAIN BODY ----------
|
|
||||||
% ABOUT
|
|
||||||
\vspace{-3.2em}
|
|
||||||
{\section{}
|
|
||||||
\parbox[t][][t]{\textwidth}{
|
|
||||||
Computer Engineering student interested in AI, bioinformatics,
|
|
||||||
Infrastructure as Code (IaC), distributed and immutable systems.
|
|
||||||
|
|
||||||
I am looking for an employment opportunity, with a focus on teamwork
|
|
||||||
and collaboration.
|
|
||||||
}
|
|
||||||
%---------- LEFT SIDE ----------
|
|
||||||
\newlength{\hwide}
|
|
||||||
\begin{minipage}[t]{0.31\textwidth}
|
|
||||||
\raggedright
|
|
||||||
% PROGRAMMING
|
|
||||||
\ifthenelse{\equal{en}{en}}
|
|
||||||
{\section{programming}}
|
|
||||||
{\section{programación}}%
|
|
||||||
\setlength{\parskip}{1mm}
|
|
||||||
\setlength{\hwide}{\dimexpr.5\hsize-3\tabcolsep}
|
|
||||||
%
|
|
||||||
\hlight
|
|
||||||
\begin{tabular}{@{}p{\hwide}p{\centerwide}}
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Python}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Good}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{C++}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Intermediate}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Nix}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Intermediate}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Java}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Basic}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{PHP}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Basic}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\end{tabular}
|
|
||||||
|
|
||||||
% TECHNOLOGIES
|
|
||||||
%
|
|
||||||
\ifthenelse{\equal{en}{en}}
|
|
||||||
{\section{technical skills}}
|
|
||||||
{\section{tecnologías}}%
|
|
||||||
\hlight
|
|
||||||
\begin{itemize}[]
|
|
||||||
\item{Linux/FreeBSD}
|
|
||||||
\item{\LaTeX}
|
|
||||||
\item{Git}
|
|
||||||
\item{LEMP Stack}
|
|
||||||
\item{REST APIs}
|
|
||||||
\item{SQL}
|
|
||||||
\item{NixOS}
|
|
||||||
\end{itemize}
|
|
||||||
|
|
||||||
% COURSES
|
|
||||||
%
|
|
||||||
\ifthenelse{\equal{en}{en}}
|
|
||||||
{\section{courses}}
|
|
||||||
{\section{cursos}}%
|
|
||||||
\hlight
|
|
||||||
\emphasized{Fundamentals of Robotics} \\
|
|
||||||
\lightfont{\textbf{Adams Formación}} \\
|
|
||||||
\emphasized{Python Programming} \\
|
|
||||||
\lightfont{\textbf{Universidad de Granada}} \\
|
|
||||||
\emphasized{Programming and distribution of mobile apps for
|
|
||||||
Android and iOS devices} \\
|
|
||||||
\lightfont{\textbf{Universidad de Granada}} \\
|
|
||||||
\emphasized{Arduino} \\
|
|
||||||
\lightfont{\textbf{Universidad de Granada}} \\
|
|
||||||
\end{minipage}%
|
|
||||||
%
|
|
||||||
%---------- RIGHT SIDE ----------
|
|
||||||
\newlength{\hwideright}
|
|
||||||
\newlength{\buffer}
|
|
||||||
\setlength{\buffer}{4pt plus 1pt minus 1pt}
|
|
||||||
%
|
|
||||||
\begin{minipage}[t]{0.64\textwidth}
|
|
||||||
% EXPERIENCE
|
|
||||||
\ifthenelse{\equal{en}{en}}
|
|
||||||
{\section{experience}}
|
|
||||||
{\section{experiencia laboral}}%
|
|
||||||
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
||||||
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
|
||||||
%
|
|
||||||
\begin{tabular}{@{}p{\hwide}p{\hwideright}}
|
|
||||||
\arrayrulecolor{light-gray}
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\raggedright
|
|
||||||
\company{JITKey}\\
|
|
||||||
\vspace{\buffer}
|
|
||||||
\lightfont{%
|
|
||||||
February 2020 \textendash{} March 2020\\
|
|
||||||
\vspace{\buffer}}
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\hwideright}{%
|
|
||||||
\raggedright
|
|
||||||
\position{Internship}\\
|
|
||||||
\vspace{\buffer}
|
|
||||||
\lightsmall{Support Manager at a startup in Spain. Cut short
|
|
||||||
due to the COVID-19 pandemic}
|
|
||||||
}\\
|
|
||||||
\end{tabular}
|
|
||||||
% EDUCATION
|
|
||||||
\ifthenelse{\equal{en}{en}}
|
|
||||||
{\section{education}}
|
|
||||||
{\section{formación académica}}%
|
|
||||||
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
||||||
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
|
||||||
%
|
|
||||||
\setlength{\parskip}{1mm}
|
|
||||||
\vspace{-0.5em}
|
|
||||||
\begin{tabular}{@{}p{\hwide}p{\rightwide}}
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\lightfont{2017 \textendash{} present} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Bachelor} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Computer Engineering} \\
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightfont{\textbf{Universidad de Granada} \\
|
|
||||||
\emph{Ceuta}} \\ %
|
|
||||||
\medskip %
|
|
||||||
} \\
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\lightfont{2015 \textendash{} 2017} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Bachelor} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Medicine} \\
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightfont{\textbf{Universidad de Sevilla} \\
|
|
||||||
\emph{Sevilla}} \\ %
|
|
||||||
\medskip %
|
|
||||||
} \\
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\lightfont{2013 \textendash{} 2015} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Bachelor} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Medicine} \\
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightfont{\textbf{Université Paris-Sud} \\
|
|
||||||
\emph{Châtenay-Malabry}} \\ %
|
|
||||||
\medskip %
|
|
||||||
} \\
|
|
||||||
\end{tabular}
|
|
||||||
\vspace{-0.8em}
|
|
||||||
%
|
|
||||||
|
|
||||||
% LANGUAGES
|
|
||||||
\ifthenelse{\equal{en}{en}}
|
|
||||||
{\section{languages}}
|
|
||||||
{\section{idiomas}}%
|
|
||||||
%
|
|
||||||
\setlength{\parskip}{1mm}
|
|
||||||
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
||||||
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
|
||||||
|
|
||||||
\begin{tabular}{@{}p{\hwide}p{\rightwide}}
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{English}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightbf{Fluent}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Spanish}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightbf{Native}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{French}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightbf{Native}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Darija (Moroccan dialect)}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightbf{Native}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\end{tabular}
|
|
||||||
%
|
|
||||||
%\section{publications}
|
|
||||||
%\vspace{-0.5em}
|
|
||||||
%\begingroup
|
|
||||||
%\renewcommand{\section}[2]{}%
|
|
||||||
%\pubstyle{
|
|
||||||
% \bibliography{pubs}
|
|
||||||
% \bibliographystyle{cvbib}
|
|
||||||
%}
|
|
||||||
%\endgroup
|
|
||||||
\end{minipage}
|
|
||||||
% ==========================================================
|
|
||||||
%-------------------- END OF DOCUMENT ----------------------
|
|
||||||
\end{document}
|
|
|
@ -1,433 +0,0 @@
|
||||||
% !TEX encoding = UTF-8 Unicode
|
|
||||||
|
|
||||||
\documentclass[letterpaper,11pt]{article}
|
|
||||||
|
|
||||||
%A Few Useful Packages
|
|
||||||
%\usepackage{marvosym}
|
|
||||||
\usepackage{fontspec} %for loading fonts
|
|
||||||
\usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting
|
|
||||||
\usepackage{graphicx}
|
|
||||||
\usepackage[usenames,dvipsnames]{xcolor}
|
|
||||||
\usepackage[left=1.3cm,
|
|
||||||
top=0.9cm,
|
|
||||||
right=1.3cm,
|
|
||||||
bottom=1.2cm,
|
|
||||||
nohead,
|
|
||||||
nofoot
|
|
||||||
]{geometry}
|
|
||||||
\usepackage{tabularx}
|
|
||||||
\usepackage{titlesec}
|
|
||||||
%\usepackage{tabto} % tab spacing
|
|
||||||
|
|
||||||
\usepackage{setspace} % line spacing
|
|
||||||
\usepackage{booktabs,colortbl} % thicker rules between table cells
|
|
||||||
\usepackage{bibentry} % bibliography
|
|
||||||
|
|
||||||
% SORTED LISTS
|
|
||||||
\usepackage{paralist}
|
|
||||||
\usepackage{datatool}% http://ctan.org/pkg/datatool
|
|
||||||
\newcommand{\sortitem}[1]{%
|
|
||||||
\DTLnewrow{list}% Create a new entry
|
|
||||||
\DTLnewdbentry{list}{description}{#1}% Add entry as description
|
|
||||||
}
|
|
||||||
\newenvironment{sortedlist}{%
|
|
||||||
\DTLifdbexists{list}{\DTLcleardb{list}}{\DTLnewdb{list}}% Create new/discard old list
|
|
||||||
}{%
|
|
||||||
\DTLsort{description}{list}% Sort list
|
|
||||||
\begin{inparaitem}[]%
|
|
||||||
\DTLforeach*{list}{\theDesc=description}{%
|
|
||||||
\item \theDesc, }% Print each item
|
|
||||||
\end{inparaitem}%
|
|
||||||
}
|
|
||||||
|
|
||||||
%Setup hyperref package, and colours for links
|
|
||||||
\usepackage[colorlinks,
|
|
||||||
breaklinks,
|
|
||||||
pagebackref=false,
|
|
||||||
debug=true,
|
|
||||||
xetex,
|
|
||||||
bookmarks=false,
|
|
||||||
pdfpagelabels=false,
|
|
||||||
hyperfootnotes=false,
|
|
||||||
hyperindex=false,
|
|
||||||
pageanchor=false]{hyperref}
|
|
||||||
\definecolor{linkcolor}{gray}{0.2}
|
|
||||||
\hypersetup{
|
|
||||||
pdfauthor={Amin Kasrou Aouam},
|
|
||||||
pdfsubject={Amin Kasrou Aouam - Resume},
|
|
||||||
pdftitle={Amin Kasrou Aouam - Resume},
|
|
||||||
urlcolor=linkcolor,
|
|
||||||
linkcolor=linkcolor
|
|
||||||
}
|
|
||||||
% colors
|
|
||||||
\definecolor{dark-gray}{gray}{0.15}
|
|
||||||
\definecolor{light-gray}{gray}{0.55}
|
|
||||||
|
|
||||||
%FONTS
|
|
||||||
\setmainfont{Liberation Serif}
|
|
||||||
\newfontfamily{\hlight}{Liberation Serif}
|
|
||||||
\defaultfontfeatures{Mapping=tex-text} % converts LaTeX specials (``quotes'' --- dashes etc.) to unicode
|
|
||||||
\usepackage{fontawesome5} % glyphs for contact info
|
|
||||||
|
|
||||||
% CUSTOM COMMANDS
|
|
||||||
\newcommand{\titlerulethick}{{%
|
|
||||||
{\color{dark-gray} \titlerule[0.5mm] }%
|
|
||||||
}}
|
|
||||||
|
|
||||||
% old section title format
|
|
||||||
\titleformat{\section}{\fontsize{28pt}{38pt}\color{dark-gray}\normalfont}{}{0mm}{}[\titlerulethick]
|
|
||||||
%\titlespacing{\section}{0pt}{3pt}{3pt}
|
|
||||||
|
|
||||||
\newcommand{\namefont}[1]{{%
|
|
||||||
\fontsize{42pt}{50pt}\normalfont\textbf{#1}%
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\spacerule}{
|
|
||||||
\addlinespace[0.5em]
|
|
||||||
\midrule[0.5mm]
|
|
||||||
\addlinespace[0.5em]
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\bigfont}[1]{{%
|
|
||||||
\fontsize{32pt}{38pt}\normalfont{#1} %
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\lightfont}[1]{{%
|
|
||||||
{\hlight#1}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\contactinfo}{%
|
|
||||||
{\hlight\color{dark-gray}}
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\lightsmall}[1]{{%
|
|
||||||
{\fontsize{11pt}{14pt}\hlight#1}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\pubstyle}[1]{{%
|
|
||||||
{\fontsize{10pt}{13pt}\hlight#1}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\lightbf}[1]{{%
|
|
||||||
\textbf{\lightfont{#1}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\emphasized}[1]{{%
|
|
||||||
{\fontsize{12pt}{14pt}\textbf{#1}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\position}[1]{{%
|
|
||||||
{\fontsize{12pt}{14pt} \hlight{#1}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\company}[1]{{%
|
|
||||||
{\fontsize{12pt}{14pt} \textbf{#1}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
\newcommand{\headline}{
|
|
||||||
{\fontsize{14pt}{17pt}\bfseries\color{dark-gray}}
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\name}{
|
|
||||||
\raggedright\fontsize{38pt}{38pt}\bfseries\flushleft\color{dark-gray}{Amin
|
|
||||||
Kasrou Aouam}
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand{\lighthrule}{
|
|
||||||
{\color{light-gray}\par\rule[0mm]{\hsize}{0.5mm}\par\vspace{0.0em}}
|
|
||||||
}
|
|
||||||
|
|
||||||
% hack to remove bibliography numbering
|
|
||||||
\makeatletter
|
|
||||||
\renewcommand\@biblabel[1]{}
|
|
||||||
\renewenvironment{thebibliography}[1]
|
|
||||||
{\section*{\refname}%
|
|
||||||
\@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
|
|
||||||
\list{}%
|
|
||||||
{\leftmargin0pt
|
|
||||||
\@openbib@code
|
|
||||||
\usecounter{enumiv}}%
|
|
||||||
\sloppy
|
|
||||||
\clubpenalty4000
|
|
||||||
\@clubpenalty \clubpenalty
|
|
||||||
\widowpenalty4000%
|
|
||||||
\sfcode`\.\@m}
|
|
||||||
{\def\@noitemerr
|
|
||||||
{\@latex@warning{Empty `thebibliography' environment}}%
|
|
||||||
\endlist}
|
|
||||||
\makeatother
|
|
||||||
%
|
|
||||||
%-------------------- BEGIN DOCUMENT ----------------------
|
|
||||||
\begin{document}
|
|
||||||
%\nocite{}
|
|
||||||
\pagestyle{empty} % non-numbered pages
|
|
||||||
\font\fb=''[cmr10]'' %for use with \LaTeX command
|
|
||||||
%---------- SPECIFY LENGTHS ----------
|
|
||||||
\newlength{\leftwide}
|
|
||||||
\setlength{\leftwide}{0.34\textwidth}
|
|
||||||
%
|
|
||||||
\newlength{\centerwide}
|
|
||||||
\setlength{\centerwide}{0.33\textwidth}
|
|
||||||
%
|
|
||||||
\newlength{\rightwide}
|
|
||||||
\setlength{\rightwide}{0.28\textwidth}
|
|
||||||
%---------- TOP SECTION ----------
|
|
||||||
\begin{tabular}[b]{@{}p{\leftwide}@{}p{\centerwide}@{}p{\rightwide}@{}}
|
|
||||||
% NAME (left)
|
|
||||||
\noindent
|
|
||||||
\begin{minipage}[b]{\leftwide}
|
|
||||||
\name
|
|
||||||
\end{minipage} & %
|
|
||||||
% CONTACT INFO (middle)
|
|
||||||
\begin{minipage}[b]{\centerwide}
|
|
||||||
\renewcommand\arraystretch{1.25}
|
|
||||||
\contactinfo
|
|
||||||
\begin{tabular}[b]{@{}cl@{}}
|
|
||||||
\faEnvelope & \href{mailto:akasroua@gmail.com}{akasroua@gmail.com}\\ %{}
|
|
||||||
\faPhone & +34 658591161\\
|
|
||||||
\faGitlab & \href{https://gitlab.com/akasroua}{gitlab.com/akasroua}\\
|
|
||||||
\end{tabular}
|
|
||||||
\end{minipage} & %
|
|
||||||
% PHOTO (right)
|
|
||||||
\begin{minipage}[b]{\rightwide}
|
|
||||||
\includegraphics[width=7em]{Assets/photo.png}
|
|
||||||
\end{minipage}
|
|
||||||
\end{tabular}
|
|
||||||
%---------- MAIN BODY ----------
|
|
||||||
% ABOUT
|
|
||||||
\vspace{-3.2em}
|
|
||||||
{\section{}
|
|
||||||
\parbox[t][][t]{\textwidth}{
|
|
||||||
Estudiante de Ingeniería Informática, interesado en las áreas de
|
|
||||||
inteligencia artificial, bioinformática, infraestructura como código
|
|
||||||
(IaC), sistemas distribuidos e inmutables.
|
|
||||||
|
|
||||||
Busco una oportunidad laboral instructiva, con un énfasis en el
|
|
||||||
trabajo en grupo y la colaboración.
|
|
||||||
}
|
|
||||||
%---------- LEFT SIDE ----------
|
|
||||||
\newlength{\hwide}
|
|
||||||
\begin{minipage}[t]{0.31\textwidth}
|
|
||||||
\raggedright
|
|
||||||
% PROGRAMMING
|
|
||||||
\ifthenelse{\equal{es}{en}}
|
|
||||||
{\section{programming}}
|
|
||||||
{\section{programación}}%
|
|
||||||
\setlength{\parskip}{1mm}
|
|
||||||
\setlength{\hwide}{\dimexpr.5\hsize-3\tabcolsep}
|
|
||||||
%
|
|
||||||
\hlight
|
|
||||||
\begin{tabular}{@{}p{\hwide}p{\centerwide}}
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Python}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Avanzado}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{C++}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Intermedio}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Nix}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Intermedio}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Java}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Básico}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{PHP}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\centerwide}{%
|
|
||||||
\lightbf{Básico}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\end{tabular}
|
|
||||||
|
|
||||||
% TECHNOLOGIES
|
|
||||||
%
|
|
||||||
\ifthenelse{\equal{es}{en}}
|
|
||||||
{\section{technical skills}}
|
|
||||||
{\section{tecnologías}}%
|
|
||||||
\hlight
|
|
||||||
\begin{itemize}[]
|
|
||||||
\item{Linux/FreeBSD}
|
|
||||||
\item{\LaTeX}
|
|
||||||
\item{Git}
|
|
||||||
\item{LEMP Stack}
|
|
||||||
\item{APIs REST}
|
|
||||||
\item{SQL}
|
|
||||||
\item{NixOS}
|
|
||||||
\end{itemize}
|
|
||||||
|
|
||||||
% COURSES
|
|
||||||
%
|
|
||||||
\ifthenelse{\equal{es}{en}}
|
|
||||||
{\section{courses}}
|
|
||||||
{\section{cursos}}%
|
|
||||||
\hlight
|
|
||||||
\emphasized{Fundamentos de Robótica} \\
|
|
||||||
\lightfont{\textbf{Adams Formación}} \\
|
|
||||||
\emphasized{Programación con Python} \\
|
|
||||||
\lightfont{\textbf{Universidad de Granada}} \\
|
|
||||||
\emphasized{Programación y distribución de aplicaciones móviles
|
|
||||||
para dispositivos Android e IOS} \\
|
|
||||||
\lightfont{\textbf{Universidad de Granada}} \\
|
|
||||||
\emphasized{Arduino} \\
|
|
||||||
\lightfont{\textbf{Universidad de Granada}} \\
|
|
||||||
\end{minipage}%
|
|
||||||
%
|
|
||||||
%---------- RIGHT SIDE ----------
|
|
||||||
\newlength{\hwideright}
|
|
||||||
\newlength{\buffer}
|
|
||||||
\setlength{\buffer}{4pt plus 1pt minus 1pt}
|
|
||||||
%
|
|
||||||
\begin{minipage}[t]{0.64\textwidth}
|
|
||||||
% EXPERIENCE
|
|
||||||
\ifthenelse{\equal{es}{en}}
|
|
||||||
{\section{experience}}
|
|
||||||
{\section{experiencia laboral}}%
|
|
||||||
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
||||||
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
|
||||||
%
|
|
||||||
\begin{tabular}{@{}p{\hwide}p{\hwideright}}
|
|
||||||
\arrayrulecolor{light-gray}
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\raggedright
|
|
||||||
\company{JITKey}\\
|
|
||||||
\vspace{\buffer}
|
|
||||||
\lightfont{%
|
|
||||||
Febrero 2020 \textendash{} Marzo 2020\\
|
|
||||||
\vspace{\buffer}}
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\hwideright}{%
|
|
||||||
\raggedright
|
|
||||||
\position{Prácticas}\\
|
|
||||||
\vspace{\buffer}
|
|
||||||
\lightsmall{Responsable de Soporte en una startup española.
|
|
||||||
Suspendidas debido al COVID-19}
|
|
||||||
}\\
|
|
||||||
\end{tabular}
|
|
||||||
% EDUCATION
|
|
||||||
\ifthenelse{\equal{es}{en}}
|
|
||||||
{\section{education}}
|
|
||||||
{\section{formación académica}}%
|
|
||||||
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
||||||
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
|
||||||
%
|
|
||||||
\setlength{\parskip}{1mm}
|
|
||||||
\vspace{-0.5em}
|
|
||||||
\begin{tabular}{@{}p{\hwide}p{\rightwide}}
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\lightfont{2017 \textendash{} presente} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Grado} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Ingeniería Informática} \\
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightfont{\textbf{Universidad de Granada} \\
|
|
||||||
\emph{Ceuta}} \\ %
|
|
||||||
\medskip %
|
|
||||||
} \\
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\lightfont{2015 \textendash{} 2017} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Grado} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Medicina} \\
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightfont{\textbf{Universidad de Sevilla} \\
|
|
||||||
\emph{Sevilla}} \\ %
|
|
||||||
\medskip %
|
|
||||||
} \\
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\lightfont{2013 \textendash{} 2015} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Grado} \\
|
|
||||||
\smallskip
|
|
||||||
\emphasized{Medicina} \\
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightfont{\textbf{Université Paris-Sud} \\
|
|
||||||
\emph{Châtenay-Malabry}} \\ %
|
|
||||||
\medskip %
|
|
||||||
} \\
|
|
||||||
\end{tabular}
|
|
||||||
\vspace{-0.8em}
|
|
||||||
%
|
|
||||||
|
|
||||||
% LANGUAGES
|
|
||||||
\ifthenelse{\equal{es}{en}}
|
|
||||||
{\section{languages}}
|
|
||||||
{\section{idiomas}}%
|
|
||||||
%
|
|
||||||
\setlength{\parskip}{1mm}
|
|
||||||
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
||||||
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
|
||||||
|
|
||||||
\begin{tabular}{@{}p{\hwide}p{\rightwide}}
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Inglés}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightbf{Fluido}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Español}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightbf{Nativo}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Francés}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightbf{Nativo}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\parbox[t][][t]{\hwide}{%
|
|
||||||
\emphasized{Darija (Dialecto marroquí)}
|
|
||||||
\medskip
|
|
||||||
} & %
|
|
||||||
\parbox[t][][t]{\rightwide}{%
|
|
||||||
\lightbf{Nativo}
|
|
||||||
\medskip
|
|
||||||
} \\ %
|
|
||||||
\end{tabular}
|
|
||||||
%
|
|
||||||
%\section{publications}
|
|
||||||
%\vspace{-0.5em}
|
|
||||||
%\begingroup
|
|
||||||
%\renewcommand{\section}[2]{}%
|
|
||||||
%\pubstyle{
|
|
||||||
% \bibliography{pubs}
|
|
||||||
% \bibliographystyle{cvbib}
|
|
||||||
%}
|
|
||||||
%\endgroup
|
|
||||||
\end{minipage}
|
|
||||||
% ==========================================================
|
|
||||||
%-------------------- END OF DOCUMENT ----------------------
|
|
||||||
\end{document}
|
|
|
@ -1,5 +1,5 @@
|
||||||
$pdflatex = "xelatex %O %S -synctex=1 -interaction=batchmode";
|
$pdflatex = "xelatex %O %S -synctex=1 -interaction=batchmode";
|
||||||
$pdf_mode = 1;
|
$pdf_mode = 1;
|
||||||
$dvi_mode = $postscript_mode = 0;
|
$dvi_mode = $postscript_mode = 0;
|
||||||
$out_dir = "Output";
|
$out_dir = "output";
|
||||||
$clean_ext = "xdv log fdb_latexmk fls";
|
$clean_ext = "xdv log fdb_latexmk fls";
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
\relax
|
|
||||||
\providecommand\hyper@newdestlabel[2]{}
|
|
||||||
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
|
|
||||||
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
|
|
||||||
\global\let\oldcontentsline\contentsline
|
|
||||||
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
|
|
||||||
\global\let\oldnewlabel\newlabel
|
|
||||||
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
|
|
||||||
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
|
|
||||||
\AtEndDocument{\ifx\hyper@anchor\@undefined
|
|
||||||
\let\contentsline\oldcontentsline
|
|
||||||
\let\newlabel\oldnewlabel
|
|
||||||
\fi}
|
|
||||||
\fi}
|
|
||||||
\global\let\hyper@last\relax
|
|
||||||
\gdef\HyperFirstAtBeginDocument#1{#1}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {1}}{1}{section.1}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {2}programming}{1}{section.2}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {3}technical skills}{1}{section.3}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {4}courses}{1}{section.4}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {5}experience}{1}{section.5}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {6}education}{1}{section.6}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {7}languages}{1}{section.7}\protected@file@percent }
|
|
||||||
\gdef \@abspage@last{1}
|
|
|
@ -1,843 +0,0 @@
|
||||||
PWD /home/coolneng/Documents/Personal/CV
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/web2c/texmf.cnf
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf-var/web2c/xetex/xelatex.fmt
|
|
||||||
INPUT Input/CV-Amin-Kasrou-Aouam-en.tex
|
|
||||||
OUTPUT Output/CV-Amin-Kasrou-Aouam-en.log
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/article.cls
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/size11.clo
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/size11.clo
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/size11.clo
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/size11.clo
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3kernel/expl3.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3backend/l3backend-xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse-generic.tex
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse-generic.tex
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse-generic.tex
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/xparse/xparse-generic.tex
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec-xetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/tuenc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/fontenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontspec/fontspec.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xunicode/xunicode.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tipa/t3enc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphicx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/keyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/graphics.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/trig.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-def/xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-def/xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-def/xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-def/xetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/xelatex/xltxtra/xltxtra.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifluatex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/iftex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifxetex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/realscripts/realscripts.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/metalogo/metalogo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/url/url.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/parskip/parskip.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/kvoptions/kvoptions.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/ltxcmds/ltxcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvsetkeys/kvsetkeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/etoolbox/etoolbox.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xcolor/xcolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-cfg/color.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-cfg/color.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-cfg/color.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics-cfg/color.cfg
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/dvipsnam.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/dvipsnam.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/dvipsnam.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/graphics/dvipsnam.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/geometry/geometry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/iftex/ifvtex.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/tabularx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tools/array.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/titlesec/titlesec.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/setspace/setspace.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/booktabs/booktabs.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/colortbl/colortbl.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/natbib/bibentry.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/paralist/paralist.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xkeyval/xkeyval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/xkeyval/xkeyval.tex
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/xkeyval/xkvutils.tex
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ifthen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/xfor/xfor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/substr/substr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-base.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsmath.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amstext.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsgen.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsbsy.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/amsmath/amsopn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/datatool/datatool-fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/defpattern.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-basic.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-addons.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-snap.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-exp.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-trigo.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-pas.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-random.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eqn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-upn.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fp/fp-eval.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hyperref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdftexcmds/pdftexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/infwarerr/infwarerr.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/pdfescape/pdfescape.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hycolor/hycolor.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/letltxmacro/letltxmacro.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/auxhook/auxhook.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/pd1enc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/pd1enc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/pd1enc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/pd1enc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/intcalc/intcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/etexcmds/etexcmds.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/map/fontname/texfonts.map
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/adobe/zapfding/pzdr.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bitset/bitset.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/bigintcalc/bigintcalc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/atbegshi/atbegshi.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/atbegshi/atbegshi.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atbegshi-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/atbegshi/atbegshi.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/atbegshi/atbegshi.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atbegshi-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/atbegshi/atbegshi.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atbegshi-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/atbegshi/atbegshi.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/atbegshi/atbegshi.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atbegshi-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atbegshi-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/atbegshi/atbegshi.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atbegshi-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hxetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hxetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hxetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/hxetex.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/puenc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/puenc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/puenc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/puenc.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/stringenc.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/atveryend/atveryend.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/atveryend/atveryend.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atveryend-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/atveryend/atveryend.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/atveryend/atveryend.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atveryend-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/atveryend/atveryend.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atveryend-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/atveryend/atveryend.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/atveryend/atveryend.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atveryend-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atveryend-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/atveryend/atveryend.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/atveryend-ltx.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/uniquecounter/uniquecounter.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/se-ascii-print.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/se-ascii-print.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/se-ascii-print.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/se-ascii-print.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/se-ascii-print.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/stringenc/se-ascii-print.def
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/l3packages/l3keys2e/l3keys2e.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/fontawesome5-utex-helper.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/tufontawesomefree.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/tufontawesomefree.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/tufontawesomefree.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/tufontawesomefree.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/tufontawesomebrands.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/tufontawesomebrands.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/tufontawesomebrands.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/fontawesome5/tufontawesomebrands.fd
|
|
||||||
INPUT Output/CV-Amin-Kasrou-Aouam-en.aux
|
|
||||||
INPUT Output/CV-Amin-Kasrou-Aouam-en.aux
|
|
||||||
INPUT Output/CV-Amin-Kasrou-Aouam-en.aux
|
|
||||||
OUTPUT Output/CV-Amin-Kasrou-Aouam-en.aux
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ts1cmr.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ts1cmr.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ts1cmr.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/base/ts1cmr.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tipa/t3cmr.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tipa/t3cmr.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tipa/t3cmr.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/tipa/t3cmr.fd
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/hyperref/nameref.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/latex/refcount/refcount.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/tex/generic/gettitlestring/gettitlestring.sty
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmmi10.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmmi8.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmmi6.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmsy10.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmsy8.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmsy6.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmex10.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmr10.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmr8.tfm
|
|
||||||
INPUT /nix/store/c4kdy1cppb2h85rq8grv73piybqfsp1q-texlive-combined-full-2020/share/texmf/fonts/tfm/public/cm/cmr6.tfm
|
|
||||||
INPUT ./Assets/photo.png
|
|
||||||
INPUT ./Assets/photo.png
|
|
||||||
INPUT Assets/photo.png
|
|
||||||
OUTPUT Output/CV-Amin-Kasrou-Aouam-en.xdv
|
|
||||||
INPUT Output/CV-Amin-Kasrou-Aouam-en.aux
|
|
Binary file not shown.
Loading…
Reference in New Issue