Text Formatting ⇒ adding tables in the footer
-
- Posts: 10
- Joined: Tue Nov 02, 2010 11:44 am
adding tables in the footer
I want to add table in the footer that appaer on every page except on title page.
How can I do so?
Regards
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
adding tables in the footer
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 10
- Joined: Tue Nov 02, 2010 11:44 am
Re: adding tables in the footer
- Attachments
-
- pagestyle.xml
- Required page style in latex format
- (8.21 KiB) Downloaded 484 times
adding tables in the footer
Localghost is pointing you in the direction of the solution to your problem. Rather than coming here and giving us a task, show us some evidence that you're trying to solve the problem on your own. Give us a minimal example of code where you're trying to achieve this, but then describe what goes wrong when you try. Otherwise, you're basically just asking strangers to do your homework for you. If you meet us halfway, you're much more likely to get help. See "How to Ask Questions the Smart Way".
-
- Posts: 10
- Joined: Tue Nov 02, 2010 11:44 am
Re: adding tables in the footer
All the pages will follow the same style except title page.
- Attachments
-
- how to make the page style like the pagestyle.JPG.
- pagestyle.JPG (24.71 KiB) Viewed 8730 times
adding tables in the footer
No doubt additional customizations will be necessary to get this exactly how you need it.
Code: Select all
\documentclass{article}
\usepackage{geometry}
\geometry{%
left=1in,
right=1in,
top=1.5in,
headsep=8pt,
headheight=1.2in,
bottom=2.5in,
footskip=8pt
}
\usepackage{titling}
\title{The Title}
\usepackage{tabularx}
\usepackage{fancybox}
\usepackage{fancyhdr}
\pagestyle{fancy}
\newlength{\hfwidth}
\setlength{\hfwidth}{\textwidth}
\addtolength{\hfwidth}{16pt}
\addtolength{\hfwidth}{2\fboxrule}
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\lhead{\renewcommand{\arraystretch}{4}\begin{tabularx}{\hfwidth}{|X|X|X|}
\hline
LOGO & \thetitle & LOGO \\ \hline
\end{tabularx}}
\lfoot{%
\vspace{8pt}\renewcommand{\arraystretch}{4}\begin{tabularx}{\hfwidth}{|X|X|X|X|X|}
\hline
\thetitle & E & F & G & H \\ \hline
I & J & K & L & Page~\thepage \\ \hline
\end{tabularx}}
\begin{document}
\fancypage{\setlength{\fboxsep}{8pt}\fbox}{}
Body text
\end{document}
P.S. Perhaps I shouldn't say anything, but I did want to mention that I find this layout extremely ugly, and wonder if there's really any reason for it.
-
- Posts: 10
- Joined: Tue Nov 02, 2010 11:44 am
Re: adding tables in the footer
The table is in the footer and there are two images in the left and right header.
Thanks a lot.
- Attachments
-
- required page style
- pagestyle-new.jpg (10.97 KiB) Viewed 8703 times
Re: adding tables in the footer
-
- Posts: 10
- Joined: Tue Nov 02, 2010 11:44 am
Re: adding tables in the footer
Thanks a lot.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
adding tables in the footer
Furthermore you should give proper problem descriptions by a minimal example along with eventually occurring error messaged from the log file. Simply saying that you failed is trivial and not useful for getting closer to a solution.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10