I tried a lot of things, but I coundn't get what I want.
I expect something like THE FIRST image, but Iam getting THE SECOND:
Here is my code in R markdown
report.rmd
---
title: "SOME TITLE"
params:
set_subtitle: test
subtitle:"`r params$set_subtitle`"
date: '`r format(Sys.Date(), "%B %d, %Y")`'
output: pdf_document
header-includes:
- \usepackage{fancyhdr}
---
\addtolength{\headheight}{1.0cm}
\pagestyle{fancyplain}
\lhead{\includegraphics[height=1.2cm]{1.png}}
\rhead{\includegraphics[height=1.2cm]{1.png}}
\renewcommand{\headrulewidth}{0pt}
How to get the result I want?