Enhance personal information formatting in LaTeX documents and update .gitignore. Improved conditional display of personal email, school email, and website in cv.tex and resume.tex for better layout. Added .secrets to .gitignore to protect sensitive information.

This commit is contained in:
2024-12-10 15:09:18 -05:00
parent f961205a30
commit 78d325884f
3 changed files with 18 additions and 6 deletions

9
cv.tex
View File

@@ -44,13 +44,16 @@
\centering
\ifx\personalEmail\empty\else
Personal: \personalEmail
\ifx\personalSchoolEmail\empty\else\\\fi
\fi
\ifx\personalSchoolEmail\empty\else
\ifx\personalEmail\empty\else\\\fi
School: \personalSchoolEmail
\ifx\personalWebsite\empty\else\\\fi
\fi
\href{https://\personalWebsite}{Website: \personalWebsite}
\ifx\personalWebsite\empty\else
\ifx\personalEmail\empty\else\\\fi
\ifx\personalSchoolEmail\empty\else\\\fi
Website: \href{https://\personalWebsite}{\personalWebsite}
\fi
\end{minipage}
\vspace{1em}