JJ1*_*603 2 html r rstudio r-markdown
我在尝试将徽标放在 RMarkdown 文档的标题时遇到问题。
这就是我所拥有的
---
output: html_document
---
<style type="text/css">
body, td {
font-size: 16px;
font-family: "Gills Sans TM";
}
code.r{
font-size: 12px;
font-family: "Gills Sans TM";
}
pre {
font-size: 12px
font-family: "Gills Sans TM";
}
</style>
Run Code Online (Sandbox Code Playgroud)
但我不知道如何在右上角添加徽标
你可以尝试
<img src="mylogo.png" style="position:absolute;top:0px;right:0px;" />
Run Code Online (Sandbox Code Playgroud)