避免在ipython notebook markdown单元格的表格标题中换行。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了避免在ipython notebook markdown单元格的表格标题中换行。相关的知识,希望对你有一定的参考价值。

我想在ipython笔记本中的markdown单元格中创建一个表:

| $X_{t-1}$         | $X_{t}$           | $	extbf{P} (X_{t}| X_{t-1}) $|  
| -------------     |-------------| ----------------------------------|
| $	extit{False}$  | $	extit{False}$  | 0.7                         |
| $	extit{False}$  | $	extit{True}$   | 0.3                         |
| $	extit{True}$   | $	extit{False}$  | 0.3                         |
| $	extit{True}$   | $	extit{True}$   | 0.7                         |

但是,表格的标题分为两行。结果是这样的。

enter image description here

我尝试使用以下命令更改对齐,而没有任何结果:

 :--- or --- = left align
 ---: = right align
 :---: = centered

我怎么能避免呢?

答案

我不知道正确的方法,但这里有一个快速解决方法。在标题的开头添加一个标签

| $X_{t-1}$         | $X_{t}$           |   $	extbf{P} (X_{t}| X_{t-1}) $       |  
| -------------     |-------------------| --------------------------------------------|
| $	extit{False}$  | $	extit{False}$  | 0.7                                         |
| $	extit{False}$  | $	extit{True}$   | 0.3                                         |
| $	extit{True}$   | $	extit{False}$  | 0.3                                         |
| $	extit{True}$   | $	extit{True}$   | 0.7                                         |

以上是关于避免在ipython notebook markdown单元格的表格标题中换行。的主要内容,如果未能解决你的问题,请参考以下文章

如何安装ipython notebook

安装anaconda-换源-安装ipython-安装ipython notebook

如何在win7 64下安装ipython notebook

IPython Notebook:代码重用

ipython notebook环境搭建

服务器(Ubuntu)远程访问ipython notebook(服务器运行ipython notebook 本地浏览器访问)