在 Emacs 组织模式下使用比例字体对齐列表



在使用比例字体(如 Helvetica)时,org-mode 是否有办法正确对齐编号列表(和其他缩进项目)?

谢谢!

不是完整的修复,但我在我的 init.el 中使用以下:

   ;; Ensure the indent face is always fixed pitch. This matches my
   ;; headline font, and therefore we indent consistent with heading font
   ;; pitch.
   (add-hook 'after-init-hook
       (lambda ()
           (set-face-attribute 'org-indent nil :inherit 'fixed-pitch)))

这让缩进的左边缘为我工作(例如,它们与标题的缩进相匹配),但如果项目符号/列表行足够长以换行,则不太正确。尽管如此,它还是解决了我的主要问题,即这些项目似乎比标题处于更高的级别。

最新更新