Shaloha,
My Emacs/AUCTeX combination used to automatically replace a single open quote ' with an accent `, as is required by LaTeX. Many machines and .emacs files later, it doesn't do that anymore. I suppose it's an AUCTeX option, but I couldn't find it. (I thought it would be in the Tex Quote AUCTeX customization menu, but no.)
How can I make the single open quote ' automatically replaced by `?
" by pressing "'" you can put this in your.emacs:(define-key TeX-mode-map "'" "")but I'm not sure this is really a good idea. "'" is different from "", LaTeX doesn't require "" instead of "'". – giordano Jun 22 '13 at 15:58'is an apostrophe as init'sor a single right close quote. Or perhaps you mean you want to just replace'by\`` on every other occasion so'foo'turns in to`foo'` ? – David Carlisle Jun 22 '13 at 19:41by pressing'` when the preceding character isn't a letter. – giordano Jun 24 '13 at 09:48