<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
I'm having a problem with the formatting of unnumbered section headings
when I add use of the amsmath package. <br>
<br>
When I use the \subsubsection* and \paragraph* commands I would
correctly see the sections headings as:<br>
<br>
FIRST UNNUMBERED TERTIARY HEADING<br>
<br>
<i>First unnumbered quaternary heading</i><br>
<br>
However, when I add \usepackage{amsmath} to the beginning of my .tex
file they are incorrectly formatted as:<br>
<tt><br>
3) *<br>
First unnumbered tertiary heading<br>
<i>(i) *</i><br>
First unnumbered quaternary heading</tt><br>
<br>
I have defined subsubsection and paragraph in my .sty file as follows:<br>
<br>
<tt>% subsubsection definitions<br>
\renewcommand{\subsubsection}{%<br>
\renewcommand{\@seccntformat}[1]{{\csname the##1\endcsname})~~}%1<br>
\@startsection<br>
{subsubsection}%<br>
{3} % 3 is the level for subsubsection<br>
{5mm}% Indent subsubsections<br>
{-\baselineskip}% skips 1 baseline after end of previous subsubsection<br>
{0.5\baselineskip}% half baseline and the first paragraph starts<br>
{\normalfont\normalsize\sc}<br>
}<br>
\renewcommand{\thesubsubsection}{\arabic{subsubsection}}<br>
<br>
% paragraph (subsubsubsection) definitions<br>
\renewcommand{\paragraph}{%<br>
\renewcommand{\@seccntformat}[1]{({\csname the##1\endcsname})~~}%1<br>
\@startsection<br>
{paragraph}%<br>
{4} % 4 is the level for subsubsubsection (paragraph)<br>
{5mm}% indent paragraph/subsubsubsections the same as subsubsections<br>
{-\baselineskip}% skips 1 baseline after end of previous subsubsection<br>
{0.5\baselineskip}% half baseline and the first paragraph starts<br>
{\normalfont\normalsize\itshape}<br>
}<br>
\renewcommand{\theparagraph}{\roman{paragraph}}</tt><br>
<br>
<br>
Anyone have any idea why this is occurring? This does not occur when
using \section* or \subsection*<br>
<br>
Thanks,<br>
Brian<br>
<br>
</body>
</html>