DEV: fancy head commands

This commit is contained in:
Christos Choutouridis 2020-05-03 15:13:08 +03:00
parent 3fcc68384c
commit 574c8d40f8

View File

@ -191,10 +191,19 @@
}
% \setFancyHead{}{}
% [1]: Even page text
% [2]: Odd page text
% [1]: Left text
% [2]: Right text
% example: \setFancyHead{Μαθημα}{Εργασία}
\newcommand{\setFancyHead}[2]{
\newcommand{\setFancyHeadLR}[2]{
\fancyhead[L]{#1}
\fancyhead[R]{#2}
}
% \setFancyHead{}{}
% [1]: Left, even page text
% [2]: Right, odd page text
% example: \setFancyHead{Μαθημα}{Εργασία}
\newcommand{\setFancyHeadLERO}[2]{
\fancyhead[LE]{#1}
\fancyhead[RO]{#2}
}