I'm a novice and I'm writing my thesis in latex (Miktex 2.7 with Led editor). How to make in heading line which will separate name of section and page number from text? something like in this document but my document is one page so on left side is name of section and on right side should be page number. Now I use memoir class.
thanks for help
Document Classes ⇒ how to make line in header?
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
how to make line in header?
Hi flippy,
welcome to the LaTeX Community board!
Choose a predefined pagestyle and/or use the command \makeheadrule. An example:
The memoir manual will give you more information.
Stefan
welcome to the LaTeX Community board!
Choose a predefined pagestyle and/or use the command \makeheadrule. An example:
Code: Select all
\documentclass[oneside]{memoir}
\usepackage[english]{babel}
\usepackage{blindtext}
\makeheadrule{headings}{\textwidth}{0.3pt}
\begin{document}
\chapter{The Class Memoir}
\section{Test Section}
\blindtext[6]
\newpage
\section{Another Section}
\blindtext[6]
\end{document}
Stefan
LaTeX.org admin
Re: how to make line in header?
great it's working thanks a lot:]