Questions about the AUCTeX package for editing (La)TeX code/documents in Emacs.
0
votes
0answers
10 views
AUCTeX: Run Compile Command n-times
I'd like to have a function that asks for a number n and executes the default compile command n-times afterwards. That is to say unlike C-c C-c (i.e. TeX-command-master) I don't want to be asked which ...
1
vote
0answers
42 views
forward and inverse search in auctex in windows 7 [closed]
I am a new user of auctex of emacs. I installed emacs using Vincent Goulet's Windows installation. But I cannot use forward and inverse search. I tried both source specials and synctex, which are two ...
0
votes
1answer
33 views
AUCTeX: Delete all fonts
This feels very much like a problem that should have already been discussed somewhere, and I am probably only too stupid to find it :(
I have defined myself a function \jf{} and want to delete all of ...
0
votes
1answer
36 views
emacs AUCTeX macros fontification
I recently started using the excellent package xargs
that provides \newcommandx. It shares a syntax similar to the default \newcommand.
I would like font-lock to reflect this.
I did
...
0
votes
0answers
34 views
Emacs hangs when I turn on the Tex-source-correlate-mode for AUCTex
After I enabled the Tex-source-correlate-mode, the Emacs would ask me "Start Emacs server for inverse search in viewer?" when I try to open the viewer. But no matter I say "yes" or "no", Emacs simply ...
0
votes
0answers
47 views
Emacs AUCTeX highlighting setup
I'm using Emacs 24.2 under windows (7) together with AUCTeX and I'm experience problems with the syntax highlighting setup. From Linux I'm used to things like:
...
0
votes
1answer
79 views
Emacs predictive mode and LaTeX
I am trying to use Emacs predictive mode with Auctex to edit LaTeX documents. I want to disable the hotkey feature for selecting alternative suggestions and use either a pop-up menu or in-place ...
0
votes
0answers
27 views
AUCTeX preview-latex previews are ugly (too narrow) [closed]
Is there a way to fix Emacs AUCTeX's preview-latex to make the previews look less ugly? Specifically, they are squashed vertically to a height of exactly one line of text. I have screenshots to show ...
0
votes
0answers
89 views
LaTeX with embedded in-line code blocks and AucTeX
I am writing LaTeX in my org file with embedded code evaluation using src_lang in-line code blocks (in my case, lang=lisp). This works fine when using bare LaTeX for export, but I would like AUCTeX ...
1
vote
5answers
149 views
Emacs/AUCTeX prefix arguments
In LaTeX mode C-c C-c is bound to:
(TeX-command-master &optional OVERRIDE-CONFIRM)
Normally this interactive function runs a command, perhaps a LaTeX compilation, asking for confirmation.
In ...
1
vote
2answers
100 views
Redefine AUCTeX font and compile keybindings
I'd like to modify font bindings, such as C-c C-f C-b, to something faster, such as C-b.
To get to the functions involved, I tried with C-h k, but I am unable to terminate the key sequence properly: ...
0
votes
0answers
109 views
makecaption undefined error with caption package in emacs + auctex [closed]
everyone!
I met with a problem when I used caption package when using beamer documentclass in emacs+auctex.
When the source code is:
\documentclass{beamer}
\usepackage{caption}
\begin{document}
...
2
votes
3answers
231 views
Sync Emacs AUCTeX with Sumatra PDF
With these lines in my init.el I am able to sync the Emacs LaTeX buffer with Sumatra:
(setq TeX-source-correlate-mode t)
(setq TeX-source-correlate-method 'synctex)
(setq TeX-view-program-list
...
2
votes
0answers
107 views
Unformatting LaTeX code with Emacs & AUCTeX [closed]
Emacs + AUCTeX provides all sort of commands for formatting text, but I can't find a way to "unformat" a snippet of code (unless undoing the change right after having run a formatting command).
For ...
2
votes
0answers
37 views
AUCTeX column marker
I am using Emacs and just built AUCTeX for LaTeX. Anyway, as I was using column-marker extension while writing in LaTeX without AUCTeX, it is not working anymore with it. I was looking over the ...
0
votes
1answer
79 views
yasnippet and backslashes
I have installed yasnippet 0.8 from elpa on emacs 24 and I want to write a snippet that inserts this text into a LaTeX document (using AUCTeX):
\\
\vspace{10pt}
So I have this snippet:
# -*- ...
1
vote
1answer
255 views
Auto Completion with auto-complete OR predictive based on mode
I'm using emacs-snapshot (24.2.50) on Xubuntu 12.10. For completion I am currently using auto-complete (v1.4).
I have a pretty nice setup of auto-complete with various sources, including the ...
0
votes
1answer
153 views
AUCTeX Info Files in OS X
I have Emacs installed from http://emacsformacosx.com/ and AUCTeX installed from homebrew. I used the option --with-emacs=/Applications/Emacs.app/Contents/MacOS/Emacs while installing AUCTeX. I am ...
3
votes
1answer
90 views
latex-electric-env-pair-mode in AUCTeX
the guys of the plain tex-mode have added a very nice feature with emacs 24.1, a minor mode called latex-electric-env-pair-mode which keeps existing \begin{...} [...] \end{...} pairs matched. I.e. ...
3
votes
3answers
66 views
Reloading AucTex Labels and Defining Keybindings
When I add a label in emacs to a .tex file, I used to reload the file to get it to show up in RefTeX. i.e. C-c ) wouldn't have the new label unless I reloaded the file.
After some searching I found ...
5
votes
2answers
422 views
emacs latex hooks not running
So for some reason some of my hooks for latex mode with auctex in emacs refuse to run but give no errors (at least none I can see in messages buffer). This is most of the stuff in my .emacs about ...
1
vote
1answer
227 views
Open pdf viewer at a certain line (forward-search) from within an .Rnw (Sweave) file
I am working with Ubuntu 12.04, Emacs 24, and the (pdf) viewer Okular 0.14. I would like to be able to open Okular (and jump to a specific line) from an .Rnw (Sweave) file. By using
(setq ...
1
vote
1answer
87 views
Using next-error and previous-error keybindings for grep under Auctex's LaTeX-mode
How can I navigate through text found by M-x grep using C-x ` and M-g p? These are normally bound to next-error and previous-error but in Auctex's LaTeX-mode they are re-bound to TeX-next-error and ...
4
votes
1answer
333 views
Emacs Auctex custom syntax highlight
I'd like to highlight a new command I created in LaTeX:
\newcommand{\conceito}[3]{
\subsection{#1} (Original: \textit{#2} #3).
}
I use this code in this way:
\conceito{Foo}{Bar}{Bla}
I ...
1
vote
0answers
38 views
Emacs (AUCTex) not writing to vc.tex file when using VC bundle in LaTeX document
I'm using GNU Emacs 24.1 for Mac OS X on Lion with the latest version of AUCTeX and the VC bundle to print version information in a footer on my LaTeX documents. The problem is that when I typeset my ...
4
votes
1answer
106 views
Jump to next missing reference using auctex
I'm using emacs + auctex for all my TeXing needs and I'm very satisfied with the workflow. However, there's one thing bothering me. Whenver I compile a document (possible consisting of multiple files) ...
4
votes
2answers
244 views
FlySpell in Org-Mode recognize latex syntax like auctex
Original Response:
I was trying to figure out how in auctex mode latex doesn't seem to highlight any latex functions with flyspell turned on. Is this a custom dictionary file or how is this ...
4
votes
1answer
162 views
Elisp macros for cleaning LaTeX-code
does anyone know of some good elisp macros for cleaning up LaTeX code?
I do a lot of LaTeX editing of other peoples sources and I'd like to extend my set of clean up tools since not everyone organize ...
1
vote
0answers
142 views
TAB key does not work for auto-completing in Auctex
I am using Emacs 24.1 on windows XP/7.
TAB/RET key works for auto-completing in elisp mode,
scratch and even ESS mode.
When I write tex file using Auctex, hitting TAB key
jumps to the next line ...
1
vote
2answers
100 views
How can I reference an external LaTeX chapter using reftex in Emacs?
I'm editing a chapter that is part of a larger LaTeX project that includes multiple chapters, and I'm trying to use C-c ) to put in a cross reference, but reftex finds only the labels in the current ...
1
vote
1answer
588 views
ESS + AUCTeX + Sweave. SyncteX integration from .Rnw <-> pdfviewer?
I'm remodeling my toolchain away from R + TeXShop to what I hope is a more efficient Sweave -> LaTeX -> SyncteX -> pdfview (skim) through emacs (Aquamacs, to be specific) AUCTeX-mode (with ...
2
votes
2answers
143 views
AUCTeX: custom ‘fill-nobreak-predicate’ hook to respect braces
I use the following C-ish indentation/bracing style when writing LaTeX code:
\foo{
blah blah... this line is getting too long and should be wrapped
}
whenever I need to re-wrap (technically, ...
2
votes
1answer
266 views
How to change the default compilation command/shortcut in GNU Emacs-AUCTeX?
In GNU Emacs with AUCTeX enabled, C-C C-C is the default shortcut for running latex over the active buffer. How can I change this to also run dvips after the dvi output is generated by latex? Can I ...
2
votes
1answer
82 views
If I open doc.foo file, I want emacs to look for and open doc.bar file in the same folder
Specifically this problem arises when working in LaTeX (auctex) for me, but I think it must have a general emacs solution.
To every doc.tex file, I have an associated and oft-edited doc.sty file in ...
3
votes
2answers
903 views
Configuring emacs for latex - void-variable LaTeX-mode-hook
Following this pdf document I added the following to my ~/.emacs file:
(load "auctex.el" nil t t)
(setq TeX-auto-save t)
(setq TeX-parse-self t)
(setq TeX-PDF-mode t) ;; .pdf statt .dvi per default:
...
3
votes
2answers
91 views
Insert starred environment or command in AUCTeX
Simple question today – I hope the answer is equally simple.
From TextMate I am used to a keyboard shortcut that changes the current environment or command to its starred version. Is there something ...
5
votes
1answer
267 views
Auto labeling environments in AUCTeX
If I insert some environment in AUCTeX by C-c C-e (for example equation or figure) then AUCTeX ask for a label with auto-inserted text eq: or fig:.
I would like to add theorem environment to LaTeX ...
5
votes
1answer
231 views
emacs: highlighting balanced expressions (eg. LaTeX tags)
What would be a good way to get Emacs to highlight an expression that may include things like balanced brackets -- e.g. something like
\highlightthis{some \textit{text} here
some more text
done now}
...
3
votes
2answers
638 views
Run TeX-command-master without querying in emacs
The key combination C-c C-c in Emacs/AucTeX runs the function TeX-command-masterwhich decides what command should be run (latex, bibtex, view, or others) and then asks the user for confirmation before ...
6
votes
1answer
304 views
Setting up RefTeX Tab completion in emacs
I am trying to make Tab completion work with RefTeX. When typing C-c [ and selecting the type of reference I have then a prompt in the minibuffer. When I know the beginning of the bib key I want to ...
2
votes
2answers
341 views
Emacs AucTex Latex syntax prevents monospaced font
My emacs (Aquamacs wich AucTex) changes font size (in e.g. LaTeX mode) to show the syntax - like this:
Unfortunately this ruins the point of a monospaced font - e.g. my comments do not align. How do ...
3
votes
1answer
199 views
How to add a function (latexmk variant) to TeX-command-list in AUCTeX?
I use the following function from latex, emacs: automatically open *TeX Help* buffer on error and close it after correction of the error? to compile .tex documents via latexmk:
(defun run-latexmk ()
...
2
votes
0answers
163 views
emacs 23.4.1/latex/flymake-mode: can't find master file
I'm having some problems with flymake-mode when editing latex files in emacs 23.4.1. First, when I start the mode I see Flymake:! in the mode line. The manual tells me this is because "Flymake was ...
1
vote
1answer
117 views
How can reftex-citation be made to recognize \subcaption?
With RefTeX C-c C-) invokes reftex-citation which first asks for type of label one wants to reference then asks one to select a reference from a list. The list is a list of labels in a document. For ...
1
vote
1answer
611 views
Emacs preview-latex minted package and -shell-escape
I'm trying to use emacs with preview-latex (C-c C-p C-b) to view my document. First a minimal example of my document:
\documentclass {article}
\usepackage{minted}
\begin{document}
\begin{listing}[H]
...
1
vote
1answer
256 views
Using texcount in Emacs to determine word count of Latex or tex file (wanting optional parameters)
I have a function I use to determine the counts in latex and normally like it to use the command brief. How would I modify this to input options instead of running with "-inc" "-brief". I could type ...
1
vote
2answers
91 views
Activate Command on Region with Cua Bindings set to Ctrl+C for copy in Emacs
I was wondering how to implement a command on a region when highlighted if it starts with Ctrl+C when Cua bindings are on.
For example, I want to highlight like four lines of text in LaTeX mode and ...
-1
votes
1answer
288 views
How to customize emacs auc-tex function Tex-command-list? [closed]
I'm trying to use the latex package `nomencl' which allows one to easily create a Nomenclature section in an article. So far so good.
I'm using emacs with AucTeX and I added the nomenclature compile ...
3
votes
1answer
199 views
yasnippets with % ending the line after $0 acts strange when used with AUCTeX
Yasnippet snippets that has a percent sign, %, ending a line with the last point of the snippet, $0, before the percent sign acts strange in that the cursor gets placed after the percent sign and not ...
2
votes
1answer
496 views
Emacs + AUCTeX: How to get colored pdflatex output?
I use latexmk to compile .tex documents via GNU Emacs + AUCTeX (my setup is described in the solution section here: Emacs + Synctex + Skim: How to correctly set up syncronization? [none of the ...
