This commit is contained in:
sjiang95 2026-02-19 21:11:46 -08:00 committed by GitHub
commit ff3a00a8a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 2 deletions

View file

@ -119,6 +119,8 @@
}
% Solves issues Warning: File `cv.out' has changed
\RequirePackage{bookmark}
% Use \pageref{LastPage} to get the number of total pages
\RequirePackage{lastpage}
%-------------------------------------------------------------------------------
% Configuration for directory locations

View file

@ -44,6 +44,10 @@
% If you would like to change the social information separator from a pipe (|) to something else
\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad}
\newtoggle{showpagetotal}
% toggle the boolean flag if you would like to use <currentPage>/<totalPage> page number
% \toggletrue{showpagetotal}% Need to compile twice
\togglefalse{showpagetotal}
%-------------------------------------------------------------------------------
% PERSONAL INFORMATION
@ -92,7 +96,7 @@
\makecvfooter
{\today}
{Claud D. Park~~~·~~~Curriculum Vitae}
{\thepage}
{\iftoggle{showpagetotal}{\thepage/\pageref*{LastPage}}{\thepage}}
%-------------------------------------------------------------------------------

View file

@ -44,6 +44,10 @@
% If you would like to change the social information separator from a pipe (|) to something else
\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad}
\newtoggle{showpagetotal}
% toggle the boolean flag if you would like to use <currentPage>/<totalPage> page number
% \toggletrue{showpagetotal}% Need to compile twice
\togglefalse{showpagetotal}
%-------------------------------------------------------------------------------
% PERSONAL INFORMATION
@ -92,7 +96,7 @@
\makecvfooter
{\today}
{Byungjin Park~~~·~~~Résumé}
{\thepage}
{\iftoggle{showpagetotal}{\thepage/\pageref*{LastPage}}{\thepage}}
%-------------------------------------------------------------------------------