Page Layout ⇒ Footer help
Footer help
https://i.stack.imgur.com/etgR0.jpg
I have no clue on how to do this or even start it.
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
-
BlackForestrian
Footer help
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}