I am relatively new to LaTeX, and I am trying to create a page header that is a table. I have tried using the fancyheading package but I can't seem to let it create a table.
Can someone suggest how I can do this?
General ⇒ Table as a Header
NEW: TikZ book now 40% off at Amazon.com for a short time.

Table as a Header
Hi,
hereś a simple example:
feel free to modify it to suit your needs.
hereś a simple example:
Code: Select all
\documentclass{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{lipsum}%just to generate some text
\renewcommand\headheight{24pt}
\lhead{\begin{tabular}{c|c}%
1a & 2a\\
1b & 2b
\end{tabular}}
\begin{document}
\chapter{Dummy Chapter}
\lipsum[1-20]
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Table as a Header
Thanks gmedina that's solved my problem.