* Peter Horst (2006-12-31) writes:

> Can AUCTeX be convinced to treat this "Hsub" subsection as a normal 
> \subsection{}, prompting for a subsection label and setting off the 
> subsection title in larger text within the .tex document?

There is no user-level facility to customize this.  You can use the
following code:

(eval-after-load "latex"
  '(progn
     (add-to-list 'LaTeX-section-list '("Hsub" 3))
     (add-to-list 'LaTeX-section-label '("Hsub" . nil))))
(add-hook 'LaTeX-mode-hook
          (lambda ()
            (add-to-list 'font-latex-match-sectioning-3-keywords-local "Hsub")
            (font-latex-match-sectioning-3-make)))

As this is rather low-level I cannot guarantee that it will work in
future versions of AUCTeX.

-- 
Ralf


_______________________________________________
auctex mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/auctex

Reply via email to