Graphics, Figures & Tables ⇒ Logo on the Front Page
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Logo on the Front Page
I want to know how can I include the logo of the uni in the front page of my thesis. I tried some trick but they did not work .
Thanks
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
Logo on the Front Page
Then you can certainly show your efforts in form of a self-contained and minimal example.azizever83 wrote:[…] I tried some trick but they did not work. […]
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10361
- Joined: Mon Mar 10, 2008 9:44 pm
Logo on the Front Page
What did you try, and why it's a trick? There are common ways. If you would tell us what you did, we possibly could tell you what was wrong.azizever83 wrote:I tried some trick
If something doesn't work, it would always be good if you would tell more details: error message and description for example.azizever83 wrote:but they did not work
So, I can just tell you, use the

\includegraphics
.Stefan
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Logo on the Front Page
I said a trick, because I found some pages say that there is no a specific way to do that

Anyway, here is my code below:
Code: Select all
\documentclass[12pt]{book}
\usepackage{arabtex}
\usepackage{utf8}
\usepackage{graphicx}
\usepackage{fancyhdr}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyhead[R]{\includegraphics[scale=1]{UoWlogo.png}}
\pagestyle{plain}
\title{My Product Description}
\author{azizever83}
\date{}
\begin{document}
\maketitle
\thispagestyle{fancy}
\chapter*{Overview}
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10361
- Joined: Mon Mar 10, 2008 9:44 pm
Logo on the Front Page
fancyhdr
command. Does that mean that you would like to include the logo on every page, not only on the front page? If that is the case, i.e. if you would like to see the logo also on pages with an empty
page style as well, you could redefine that style, such asCode: Select all
\fancypagestyle{empty}{%
\fancyhf{}% clear header and footer
\fancyhead[R]{\includegraphics{UoWlogo}}% include the logo
}
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Re: Logo on the Front Page
I works fine, but it appears also in the appendixes. How can I hide it from the appendixes pages?
Thanks
- Stefan Kottwitz
- Site Admin
- Posts: 10361
- Joined: Mon Mar 10, 2008 9:44 pm
Logo on the Front Page
Code: Select all
\fancypagestyle{empty}{%
\fancyhf{}% clear header and footer
}
Stefan
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Logo on the Front Page
I don't know how say thanks for you for the great effort that you provide for me and for the other members of this forum. '
\textbf{Thanks a lot}