使用google colab markdown如何在文本下显示波浪线

问题描述 投票:0回答:1

Google colab markdown 同时支持

html
latex
。我想使用 colab markdown 在某些文本下显示 squiggly 线,但它不会渲染波浪线。

乳胶:

\uwave{This text is underlined with a wavy line!}

HTML:

## <font color='grey' style="text-decoration: underline wavy;"> **Analysis** </font>

如何在 google colab 上的文本下显示波浪线?

html fonts latex markdown google-colaboratory
1个回答
1
投票

根据 Colab Markdown 指南,该工具使用 marked.js 库来渲染 Latex。由于marked.js不支持下划线(GitHub问题),因此无法使用Latex在Colab中渲染波浪形下划线。

一个不完美的解决方案是使用 Jupyter 的

%%html
magic,这是一种告诉 Jupyter 将单元格块渲染为 HTML 代码的方法:

%%html
<font color='skyblue' style="font-size: 24px; text-decoration: underline wavy;"> There's a wavy line beneath me</font>

由于这是 Jupyter 命令,因此您需要将单元作为代码运行。另外,您可能想隐藏原始 HTML 代码(“工具”->“命令面板”->“显示/隐藏代码”)。

结果如下图所示。不幸的是,您无法摆脱小“显示代码”链接,这就是为什么这个解决方案并不完美:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.