I would like to print a twoside document in order to read it like a book. So basically about the page numbers it should look like that.
- The page number of left pages need to be at the very left side.
- The page number of right pages need to be at the very right side.
Code: Select all
\lhead[]{}
\chead[]{}
\rhead[]{}
\lfoot[\thepage]{Title}
\cfoot[]{}
\rfoot[Titre]{\thepage}
It's good working for the Roman numbers :
Code: Select all
PageNumber & Title |||| Title & PageNumber
Code: Select all
Title & PageNumber |||| PageNumber & Title
But I want it like :
Code: Select all
PageNumber & Title |||| Title & PageNumber
I may add one more Roman page to solve the issue. But this is not possible in my case. So how can i solve my issue.
Thank you so much
P.-S. I've spend lot of time doing research about it on Google but I still can't solve my problem.