如何在Jupyter Notebook中增加Markdown表的字体大小?

时间:2018-09-12 07:57:28

标签: ipython jupyter-notebook markdown

我有一个带有降价单元的虚拟笔记本电脑

# Projects

<div style="font-size: 50px">

hello

| Project                      |Project Type       | Status                |
|------------------------------|-------------------|-----------------------|
|   Hello phase 1              |ABC                |Ongoing                |
|   Goodbye analytics          |EFG                |Completed              |

</div >

但是它不会增加表格中单词的字体大小,而只会增加“ Hello”的字体大小。

是否可以增加表格中单词的字体大小?谢谢。

3 个答案:

答案 0 :(得分:5)

您需要更多CSS。尝试将以下内容而不是style=添加到markdown文件中:

<style>
td {
  font-size: 50px
}
</style>

取决于您的jupyter版本other approaches might work

答案 1 :(得分:0)

您还可以将其添加到custom.css中:

.rendered_html table, .rendered_html td, .rendered_html th {
    font-size: 200%;
}

我还认为您仅应该使用table元素(省略tdth元素)就可以做到这一点。

答案 2 :(得分:0)

您可以尝试以下操作: 在单元格中添加html标记,这很烦人,但目前还是有用的

例如

|&#60;font size=4&#62;Project&#60;/font&#62;|&#60;font size=4&#62;Project Type&#60;/font&#62;|&#60;font size=4&#62;Status&#60;/font&#62;|<br>
|---|---|---|<br>
|&#60;font size=4&#62;Hello phase 1&#60;/font&#62;|&#60;font size=4&#62;ABC&#60;/font&#62;|&#60;font size=4&#62;Ongoing&#60;/font&#62;|<br>
|&#60;font size=4&#62;Goodbye analytics&#60;/font&#62;|&#60;font size=4&#62;EFG&#60;/font&#62;|&#60;font size=4&#62;Completed&#60;/font&#62;|