Document Classes ⇒ how to make line in header?
how to make line in header?
thanks for help
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
how to make line in header?
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