Emacs has been my LaTex editor for several years. Along with AucTex, I have been using the label/ref management utility for emacs supplied by aux-renum.el. It's available on the CTAN archive at
However, when I fired it the other day I ran into an error:
invalid read sytax: "#"
If anyone has updated the aux-renum package to work with the current version of emacs, I would greatly appreciate knowing how to get a copy of a working version. Thanks in advance.
hyperref
package? If so, turn it off and tryaux-renum.el
again. – Fran Burstall Aug 19 '21 at 01:18\usepackage{hyperref}
in it, then the.aux
file has a format thataux-renum.el
does not expect (no surprise: pdf was not a thing when it was written). This causesaux-renum.el
to write garbage to a temporary buffer on which it does aneval-buffer
and this provokes the read error. – Fran Burstall Aug 19 '21 at 14:04