Page LayoutFooter help

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
juicegod1
Posts: 1
Joined: Tue Jan 03, 2017 10:14 pm

Footer help

Post by juicegod1 »

How can I create a footer or something at the end of the page that looks just like the one in this picture?
https://i.stack.imgur.com/etgR0.jpg
I have no clue on how to do this or even start it.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
BlackForestrian

Footer help

Post by BlackForestrian »

Please try this as a starter ;-)

Code: Select all

\documentclass[oneside]{book}

\usepackage{fancyhdr}
\usepackage{hyperref}

\fancypagestyle{plain}{%
  \renewcommand{\headrulewidth}{0pt}
  \fancyhf{}
  \fancyfoot[L]{\textcopyright\ \url{www.latex-community.org}}
  \fancyfoot[C]{ \textbullet ~ \textbullet}
  \fancyfoot[R]{Mr. Gumby}
}

\usepackage{blindtext}
\begin{document}

\blinddocument

\end{document}
Post Reply