support a function to customize contents on footer

This commit is contained in:
Posquit0.BJ 2015-11-26 14:00:03 +09:00
parent 6e74261e5d
commit 227b1b77e7
9 changed files with 18 additions and 10 deletions

View file

@ -414,15 +414,17 @@
} }
% Define a footer for CV % Define a footer for CV
% Usage: \makecvfooter % Usage: \makecvfooter{<left>}{<center>}{<right>}
\newcommand*{\makecvfooter}{ \newcommand*{\makecvfooter}[3]{
\fancyfoot{} \fancyfoot{}
\fancyfoot[L]{} \fancyfoot[L]{
\footerstyle{#1}
}
\fancyfoot[C]{ \fancyfoot[C]{
\footerstyle{\@firstname \@lastname~~~·~~~Curriculum Vitae} \footerstyle{#2}
} }
\fancyfoot[R]{ \fancyfoot[R]{
\footerstyle{\thepage} \footerstyle{#3}
} }
} }

Binary file not shown.

View file

@ -60,8 +60,11 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Content % Content
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Make a footer for CV using personal data %%% Make a footer for CV with three arguments(<left>, <center>, <right>)
\makecvfooter \makecvfooter
{\today}
{Claud D. Park~~~·~~~Curriculum Vitae}
{\thepage}
\begin{document} \begin{document}
%%% Make a header for CV using personal data %%% Make a header for CV using personal data

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

After

Width:  |  Height:  |  Size: 187 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

View file

@ -60,11 +60,14 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Content % Content
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Make a footer for CV using personal data %%% Make a footer for CV with three arguments(<left>, <center>, <right>)
\makecvfooter \makecvfooter
{\today}
{Claud D. Park~~~·~~~Résumé}
{\thepage}
\begin{document} \begin{document}
%%% Make a header for CV using personal data %%% Make a header for CV with personal data
\makecvheader \makecvheader
%%% Import contents %%% Import contents