Suppose I have the following document:
\documentclass{amsart}
\begin{document}
\subsection{Subsection}
Content.
\end{document}
How can I modify the code so that the subsection heading is italic instead of bold? I tried to use the titlesec package, but I don't think it is compatible with the AMS document classes:
\documentclass{amsart}
\usepackage{titlesec}
\titleformat*{\subsection}{\it}
\begin{document}
\subsection{Subsection}
Content.
\end{document}
It works with the Article document class, but it produces errors in an AMS Article.
Edit: I would also like a space between the subsection title and the content, as in the typical Article document class.


\itis somewhat deprecated ... better to use\itshape. See http://tex.stackexchange.com/a/11200/47522. – cslstr Mar 28 '14 at 04:45