This is what I got with the following code:
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\usepackage{graphicx}
\usepackage{calligra}
\usetikzlibrary{positioning}
\usepackage{marvosym}
\usepackage{wasysym}
\usepackage{xcolor}
\usepackage[colorlinks=true,urlcolor=blue]{hyperref}
\begin{document}
\begin{tikzpicture}
\node (UAF) at (0, 0) {\Huge \sc University of Agriculture, Faisalabad};
\node [below of = UAF] (Dept) {\Huge {\calligra Department of Mathematics \& Statistics}};
\node [below left of = Dept] (Phone1) {\Large \phone ~ +41-9200161-70/3317};
\node [below left of = Phone1] (Phone2) {\Large \phone ~ +41-9200457};
\node [below left of = Phone2] (Email1) {\Large \Email ~ \href{mailto:myaseen208@gmail.com}{myaseen208@gmail.com}};
\node [below left of = Email1] (Email2) {\Large \Email ~ \href{mailto:myaseen208@uaf.edu.pk}{myaseen208@uaf.edu.pk}};
\node [right of = Phone2] (MS) {\Large M\&S No:\hrulefill{}};
\node [right of = Email2] (Date) {\Large Dated:\hrulefill{}};
\node[inner sep=0pt, left = of Dept.west] (LogoUAF) {\includegraphics[width=0.25\textwidth]{LogoUAF.png}};
\end{tikzpicture}
\end{document}
I have few issues with the node placements.
- I want phone numbers and emails aligned left and should start right below D of Department.
- M&S No and Dated should be right aligned and end with \hrulefill{} output.
- Logo should be left aligned and should cover all six lines.
Any help will be highly appreciated. Thanks






