gpt4 book ai didi

emacs - 在 AucTeX 中,评论后分项列表中的新项目会导致评论下一个项目

转载 作者:行者123 更新时间:2023-12-04 15:27:49 24 4
gpt4 key购买 nike

在 AucTeX 中,编辑逐项列表时:

\begin{itemize}
\item My item % note to self
\end{itemize}

当我在“自我”之后做 C-c C-j 时,我得到:
\begin{itemize}
\item My item % note to self
% \item
\end{itemize}

当我想要:
\begin{itemize}
\item My item % note to self
\item
\end{itemize}

是否有可以修改的设置以使其正常工作?

最佳答案

(setq LaTeX-insert-into-comments nil)

似乎解决了这个问题,尽管它可能有我不知道的其他影响。要使用它,请将其放入您的 .emacs 自定义文件中;要测试它,请尝试 M-:然后将上面的代码粘贴到提示中。

变量 LaTeX-insert-into-comments被定义为
*Whether insertion commands stay in comments. 
This allows using the insertion commands even when
the lines are outcommented, like in dtx files.

编辑:

这是更好的东西:
(defadvice LaTeX-insert-item (around my-LaTeX-insert-item activate)
(let ((LaTeX-insert-into-comments nil)) ad-do-it))

这将防止不必要的影响设置 LaTeX-insert-into-comments全局至 nil通过仅在插入项目时临时更改它。同样,要使用它,请将其放入您的 .emacs 自定义文件中。

关于emacs - 在 AucTeX 中,评论后分项列表中的新项目会导致评论下一个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2753942/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com