summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlistout <listout@protonmail.com>2021-10-02 21:28:13 +0530
committerlistout <listout@protonmail.com>2021-10-02 21:28:13 +0530
commit8459bb858e02e3a6151e36a199588449e9eaa8c9 (patch)
tree0b6820f277487d096c40bafe48ac0183c0375c9a
parent6f173d25ca8c2ae3eba4b09c78424752fabe3da6 (diff)
Changed to LuaLatex
Changed pdf engine to lualatex, as result have TeX Gyre Chorus as Italic font which was previously not possible with pdflatex. Also removed inputenc package as it's not required anymore.
-rw-r--r--resume.pdfbin272534 -> 61067 bytes
-rw-r--r--resume.tex11
2 files changed, 8 insertions, 3 deletions
diff --git a/resume.pdf b/resume.pdf
index f1f670d..caf412e 100644
--- a/resume.pdf
+++ b/resume.pdf
Binary files differ
diff --git a/resume.tex b/resume.tex
index 0b2f9ea..cfb7ef5 100644
--- a/resume.tex
+++ b/resume.tex
@@ -1,3 +1,5 @@
+% !TEX program = lualatex
+
\documentclass[10pt, letterpaper]{article}
% margins
@@ -8,11 +10,12 @@
{C\nolinebreak[4]\hspace{-.05em}\raisebox{.22ex}{\footnotesize\bf ++}}
% file font
-\usepackage[utf8]{inputenc}
\usepackage{mdwlist}
\usepackage[T1]{fontenc}
-\usepackage{tgpagella}
-\usepackage{tgcursor}
+\usepackage{fontspec}
+\setmainfont[
+ItalicFont={TeX Gyre Chorus}
+]{TeX Gyre Pagella}
% section naming
\usepackage{titlesec}
@@ -195,4 +198,6 @@ to all my contributions.}}
\subsection{College Seminar:} First position in college seminar.
Using Arduino and HC SR04 module, created a sonar with GUI feedback.
+ \texttt{Test}
+
\end{document}