我使用下面的代码在pdf版本中以r markdown添加公司徽标和
输出很好。
我需要在每个页面上添加2个徽标 - 一个用于我的客户,另一个用于我们的
公司。
是否可以使用r markdown在pdf中添加2个徽标。
---
title: "Complaints Text Model"
author: "ANALYTICS TEAM"
date: '`r format(Sys.Date(), "%B %d, %Y")`'
output:
pdf_document:
toc: yes
header-includes:
- \usepackage{fancyhdr}
always_allow_html: yes
---
\addtolength{\headheight}{1.0cm}
\pagestyle{fancyplain}
\rhead{\includegraphics[height=1.2cm]{D:/D Drive Data/Shivi/R Project/my company.png}}
\renewcommand{\headrulewidth}{0pt}
可以在页面的一侧和另一侧的其他徽标。
答案 0 :(得分:2)
您需要做的就是模仿左侧标题的语法:
\rhead{\includegraphics[height=1.2cm]{D:/D Drive Data/Shivi/R Project/my company.png}}
\lhead{\includegraphics[height=1.2cm]{D:/D Drive Data/Shivi/R Project/client.png}}