如何使用 emacs 在乳胶中强制执行 80 列

How to enforce 80 columns in latex using emacs

我看到填充列在我想要的位置显示了一个漂亮的栏。

太棒了。

但是我很懒。我希望它为我自动点击 return。更不用说有时我回去编辑东西,我的 80 列规则让一切变得混乱。

这可能吗?

开启auto-fill-mode:

(setf fill-column 80)
(add-hook 'latex-mode-hook #'auto-fill-mode)

When Auto Fill mode is enabled, inserting a space at a column beyond `current-fill-column' automatically breaks the line at a previous space.

如果您稍后返回编辑代码,只需 M-q (fill-paragraph) 重新包装。