我想在我的R降价报告的右上角放置一个公司徽标图像,然后向下移动标题,比默认位置低3或4厘米.这个想法看起来像是公司的信笺.
任何人都可以建议我如何在我的.Rmd文件中编码?
谢谢你的帮助!
Quarto
我正在尝试在使用from生成的 HTML 报告中插入公司徽标图像RStudio
。我的报告模板如下
---
title: "Report Title"
subtitle: "Report subtitle"
author: "Name and Sruname"
date: last-modified
date-format: "DD-MM-YYYY"
description: "Text Text Text Text Text Text Text Text "
last-modified:
title-block-banner: true
format:
html:
embed-resources: true
smooth-scroll: true
theme: cosmo
fontcolor: black
toc: true
toc-location: left
toc-title: Summary
toc-depth: 3
---
```{r sesPackages, results='hide', message=FALSE, warning=FALSE, echo=FALSE}
library(tidyverse, verbose = F, quietly = T)
library(knitr, verbose = F, quietly = T)
library(kableExtra, verbose = F, quietly = T) …
Run Code Online (Sandbox Code Playgroud)