Hello,
I've got a problem. I need to print a document with page numbers in upper right corner of every page (in header). Is it possible with LYX?
LyX ⇒ Page number in header
NEW: TikZ book now 40% off at Amazon.com for a short time.

Page number in header
LyX has got nothing to with your requirement. To get the page number on the top right corner of every page, you can use fancyhdr. Here is a minimal example of what you might need:
Code: Select all
\documentclass{article}
\usepackage{blindtext}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % Empty every style
\fancyhead[RO,RE]{\arabic{page}}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\begin{document}
\Blindtext
\end{document}
OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim