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.
Page Layout ⇒ Footer help
Footer help
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}