【问题标题】:How to add more information in the title page of beamer presentation in R markdown?如何在 R Markdown 的投影仪演示文稿的标题页中添加更多信息?
【发布时间】:2023-03-08 03:10:01
【问题描述】:

这个方法我试过了,

title: "Course"
author: |
        |           %email:
        |           %office
output: 
  beamer_presentation

但是,它会在每张幻灯片的左下角显示区块“作者”的所有信息。

我希望得到这样的结果,

This is the title

Author

email:
office:

Date

谢谢。

【问题讨论】:

    标签: r latex r-markdown markdown page-title


    【解决方案1】:

    您可以设置一个简短的作者选项\author[short form for footline]{long form for titlepage} 来修改脚注中显示的文本:

    ---
    title: "Course"
    author: |
            |           %email:
            |           %office
    output: 
      beamer_presentation:
        theme: Dresden
    header-includes:
       - \AtBeginDocument{\author[Author]{Author\\ email:\\ office:}}
    ---
    
    test
    

    【讨论】:

    • 如何在每张幻灯片的页脚中隐藏作者姓名,如果我使用任何主题,默认情况下会打印出来?
    • @krushnachChandra 如果您能够创建一个简短的示例来演示您的问题并显示您使用的主题,您可以在topanswers.xyz/tex 提问,我相信这可以轻松解决。
    猜你喜欢
    • 1970-01-01
    • 2019-08-03
    • 1970-01-01
    • 1970-01-01
    • 2021-05-19
    • 2020-08-09
    • 2021-05-24
    • 1970-01-01
    • 2011-03-02
    相关资源
    最近更新 更多