Placing image next to multiple line text in header

fancyhdr

I am trying to recreate the following header created in Word using LaTeX

desired output

I have attempted to do so by using the fancyhdr package and creating a table as follows

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % sets both header and footer to nothing
\renewcommand{\headrulewidth}{0pt}
\fancyhead[L]{ 
\begin{tabular}{l l}
\multirow{3}{*}{\includegraphics[scale=1]{template/header_left}} & {\huge Big text} \\
& Small text \\
\multicolumn{2}{l}{\includegraphics[scale=1]{template/horizontal}}
\end{tabular}}

However, the result looks like this:

Latex output

these are the two images used to construct the header:

Image 1: horizontak

Image 2:

left

Best Answer

The makecell package often comes handy for these kinds of constructs.

\documentclass{article}
\usepackage{lipsum}
\usepackage{makecell}
\usepackage{graphicx}
\usepackage{fancyhdr}
\setlength{\headheight}{64pt}
\pagestyle{fancy}
\fancyhf{} % sets both header and footer to nothing
\renewcommand{\headrulewidth}{0pt}
\fancyhead[L]{ 
  \mbox{\makecell[cl]{\includegraphics[scale=1]{header_left}}}
  \makecell[cl]{{\huge Big text} \\[2pt] ~Small text} \\[-9pt]
  {\includegraphics[width=\headwidth]{horizontal}}}

\begin{document}
\lipsum
\end{document}

enter image description here

Related Question