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

时间:2018-03-06 16:23:56

标签: ipython jupyter-notebook

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

| $X_{t-1}$         | $X_{t}$           | $\textbf{P} (X_{t}| X_{t-1}) $|  
| -------------     |-------------| ----------------------------------|
| $\textit{False}$  | $\textit{False}$  | 0.7                         |
| $\textit{False}$  | $\textit{True}$   | 0.3                         |
| $\textit{True}$   | $\textit{False}$  | 0.3                         |
| $\textit{True}$   | $\textit{True}$   | 0.7                         |

然而,该表的标题分为两行。结果是这样的。

enter image description here

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

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

我该如何避免呢?

1 个答案:

答案 0 :(得分:0)

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

| $X_{t-1}$         | $X_{t}$           |   $\textbf{P} (X_{t}| X_{t-1}) $       |  
| -------------     |-------------------| --------------------------------------------|
| $\textit{False}$  | $\textit{False}$  | 0.7                                         |
| $\textit{False}$  | $\textit{True}$   | 0.3                                         |
| $\textit{True}$   | $\textit{False}$  | 0.3                                         |
| $\textit{True}$   | $\textit{True}$   | 0.7                                         |