Many thanks,
Roger Levy
Does this work?
(add-to-list 'TeX-font-list '(?\C-p "\\textipa{" "}"))
Steve Berman
Nope...but thanks for the suggestion! (Also, putting that straight
into .emacs causes emacs to balk on startup, presumably because it
doesn't know anything about 'TeX-font-list.)
Actually, please don't respond further to this message as I think the
AUCTeX mailing list is a more appropriate forum.
Roger
Just FYI: there are two solutions that were generously provided to me
by Ralf Angeli on the AUCTeX mailing list:
1) Do M-x customize-variable <RET> LaTeX-font-list <RET> and add the
\textipa{} key binding through the Emacs customization menu. (You'll
need to do C-q C-p to enter the ^P character -- this should be more
transparent after you get to the menu.)
2) Add the following line to your init file:
(eval-after-load "latex"
'(add-to-list 'LaTeX-font-list '(?\C-p "\\textipa{" "}")))
which should do the trick as well.
I believe that in both cases you'll need AUCTeX installed.
Roger