Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使乳胶模式应用于 Emacs 中扩展名为 .tikz 的文件?(我正在使用 Auctex)
您可以M-x latex-mode在文件缓冲区中运行。如果您想为您访问的每个文件自动执行此操作,请将以下内容添加到.emacs,
M-x latex-mode
.emacs
(setq auto-mode-alist (append '(("\\.tikz\\'" . latex-mode)) auto-mode-alist))
auto-mode-alist是您可能已经猜到的文件类型和应用模式的列表。您可以运行C-h v auto-mode-alist以获取您的 emacs 变量的描述。
auto-mode-alist
C-h v auto-mode-alist