I am trying using XeLaTex to get page number in a format like below (number into brackets):
(1), (2), (3) etc. and in bigger font size (24pt).I want to place the page number on Top and Right of my page.
I wrote this using fancyhdr package:
Code: Select all
\documentclass[12pt]{report}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{1pt}
\fancyhead[R]{\thepage}
\begin{document}
\include{file}
\end{document}