更改vim隐藏文本字体大小

发布于 2024-11-04 16:36:56 字数 233 浏览 0 评论 0原文

我想增加隐藏的乳胶符号/标题的字体大小。我还没有找到一个简单的方法来做到这一点。有没有一种不起眼的 hack 可以起作用?

看起来好像是在 Emacs AUCTeX 中完成的: aquamacs 截图

我知道截图中的公式来自 png 文件,但至少它使用更大的标题字体。

I want to increase the font size of my concealed latex symbols / titles. I haven't found a straightforward way to do this. Is there an obscure hack that would work?

It looks as though it has been done in Emacs AUCTeX:
aquamacs screenshot

I'm aware that the formula in the screenshot comes from a png file, but at least it uses a bigger font for the title.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

盛装女皇 2024-11-11 16:36:56

虽然 Vim 不允许您更改字体大小(即 Vim 实例中的所有字体必须具有相同大小),但它确实允许您应用特殊突出显示和/或不同的字体。为此,您可以简单地将所有隐藏文本设为粗体并加下划线:

:highight Conceal gui=bold,underline cterm=bold,underline

您还可以更改默认颜色:

:highight Conceal gui=bold,underline cterm=bold,underline guifg=yellow guibg=red ctermfg=yellow ctermbg=red

您还可以更改隐藏文本使用的字体。 (从技术上讲,我认为可以指定更大尺寸的(位图)字体,但不建议这样做,因为它会搞乱屏幕绘图):

:highight Conceal font=Monaco gui=bold,underline cterm=bold,underline guifg=yellow guibg=red ctermfg=yellow ctermbg=red

While Vim does not allow you to change the font size (i.e, all fonts in Vim instance must be same size) it does allow you to apply special highlighting and/or a different font. To do this you could, e.g., simply make all Conceal text bold and underlined:

:highight Conceal gui=bold,underline cterm=bold,underline

You could also change the default colors:

:highight Conceal gui=bold,underline cterm=bold,underline guifg=yellow guibg=red ctermfg=yellow ctermbg=red

You can also change the font used by Conceal text. (Technically I think it is possible to specify a (bitmap) font of larger size, but that's not advised because it will screw up screen drawing):

:highight Conceal font=Monaco gui=bold,underline cterm=bold,underline guifg=yellow guibg=red ctermfg=yellow ctermbg=red
笛声青案梦长安 2024-11-11 16:36:56

据我所知,这在 vim 中是不可能的。在控制台 vim 中,您受到终端功能的限制,而在 gui 中,只有一种字体设置,guifont

As far as I know this is not possible in vim. In console vim you are limited by your terminal's capabilities and in the gui there is only one setting for the font, guifont.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文