[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX] [SOLVED] Re: changing how a beamer frame is inserted
From: |
Mandar Mitra |
Subject: |
[AUCTeX] [SOLVED] Re: changing how a beamer frame is inserted |
Date: |
Mon, 9 Aug 2010 07:38:24 +0530 |
OK, I figured a way out. I put the following
(TeX-add-style-hook
"beamer"
(lambda ()
(LaTeX-add-environments '("frame" (lambda ...
in my LaTeX-mode-hook, but I'm a little unsure if this is the best /
cleanest way to do this.
Mandar Mitra wrote (Sun, Aug 08, 2010 at 01:21:03PM +0530):
> Hello,
>
> Currently a beamer frame is inserted as follows:
>
> \begin{frame}
> \frametitle{Title}
>
> \end{frame}
>
> I want to change it to use the following format:
>
> \begin{frame}{Title}
>
> \end{frame}