* Santiago Mejia (2012-12-13) writes:

> When I enter the macro "\cite" in the minibuffer, Reftex (or AucTex)
> recognizes that it is a quotation and activates the Reftex interface (just
> as if I had written C-c [).  How can I make Reftex become active, also when
> I type "\parencite" and "\footcite"?

Are these macros from a certain LaTeX package?  If yes, you could write
an AUCTeX style file for the package (see (info "(auctex)Style Files"))
and put something like this inside:

(TeX-add-style-hook
 "your-style"
 (lambda ()
   (TeX-add-symbols
    '("parencite" TeX-arg-cite)
    '("footcite" TeX-arg-cite))))

See also the AUCTeX style files for the jurabib, natbib or harvard
packages.

-- 
Ralf

_______________________________________________
auctex mailing list
auctex@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex

Reply via email to