gpt4 book ai didi

pandas - 在 Marp 中插入表

转载 作者:行者123 更新时间:2023-12-02 02:39:24 25 4
gpt4 key购买 nike

我正在使用 Marp 生成 pdf 演示文稿(markdown 语法)。对于演示文稿,我必须从 pandas 数据框中插入表格。我现在使用的技巧是通过 pandas 打印“to_markdown”并将结果复制粘贴到我的 Markdown 代码中,但我无法更改字体大小并选择放置表格的位置。马尔普documentation对于此类问题没有太大帮助。如何在 Markdown 中修改字体大小和表格本地化?

最佳答案

您可以通过样式属性的可用性以任何您想要的方式设置表格样式(全局或仅限于单张幻灯片)。

例如,您可以使用 Markdown 表格并通过调整必要的 CSS 选择器来更改其外观。默认情况下,这将全局应用,但如果您在 style 标记后添加 scoped ,那么它将仅作用于该幻灯片。 (有关详细信息,请参阅 marp documentation)。

这允许您为表格设置各种样式 - 甚至设置可以根据需要对每张幻灯片进行调整的通用样式。

请参阅下面的示例。


---
marp: true
theme: default
---

<style scoped>
table {
height: 100%;
width: 100%;
font-size: 20px;
color: red;
}
th {
color: blue;
}
</style>

# Fruit Table -- styled

Fruit | Colour | Amount | Cost
-----|------|:-----:|------:
Banana | Yellow | 4 | £1.00
Apple | Red | 2 | £0.60
Orange | Orange | 10 | £2.50
Coconut | Brown | 1 | £1.50

---

# Fruit Table -- default

Fruit | Colour | Amount | Cost
-----|------|:-----:|------:
Banana | Yellow | 4 | £1.00
Apple | Red | 2 | £0.60
Orange | Orange | 10 | £2.50
Coconut | Brown | 1 | £1.50

关于pandas - 在 Marp 中插入表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63847837/

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