Tagged Questions
4
votes
0answers
179 views
TeX-run-Tex wrong type argument in emacs
I use such a function for compiling LaTeX in emacs (AUCTeX) taken from here (accepted answer by Jouni K. Seppänen):
(defun run-latexmkk ()
(interactive)
(let ((TeX-save-query nil)
...
3
votes
2answers
72 views
emacs keystroke remapping fails under TeX mode
I've remapped Ctrl-j to next-line with (global-set-key "\C-j" 'next-line) but this doesn't work under TeX mode where Ctrl-j "insert two hard returns (standard end of paragraph) and check syntax of ...