gpt4 book ai didi

r-markdown - 编辑 R Markdown Slidy Presentation 的标题幻灯片

转载 作者:行者123 更新时间:2023-12-04 21:12:48 25 4
gpt4 key购买 nike

有没有办法编辑 R Markdown Slidy 演示文稿的标题幻灯片?我可以添加页眉、页脚和自定义 css:

title: "Slidy Template"
author: ""
date: "June 18, 2015"
runtime: shiny
output:
slidy_presentation:
css: ./styles/Slidy_Styles.css
includes:
after_body: ./styles/doc_suffix.html
before_body: ./styles/header.html

但我不知道如何向幻灯片添加除标题、作者和日期之外的任何内容,或者用自定义 html 模板替换标准幻灯片标题幻灯片,就像我对页眉和页脚所做的那样。

有没有办法做到这一点?

最佳答案

您可以在pandoc中修改关于首页的部分slidy template ,也可以通过 pandoc -D slidy 找到.

$if(title)$
<div class="slide titlepage">
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
<p class="author">
$for(author)$$author$$sep$<br/>$endfor$
</p>
$if(date)$
<p class="date">$date$</p>
$endif$
</div>
$endif$

将生成的文件保存为 pandoc 模板目录中的 default.slidy :
$HOME/.pandoc/templates (unix)
C:\Documents And Settings\USERNAME\Application Data\pandoc\templates (windows XP)
C:\Users\USERNAME\AppData\Roaming\pandoc\templates (windows 7)

关于r-markdown - 编辑 R Markdown Slidy Presentation 的标题幻灯片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30921189/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com