For a specific problem, please post a
minimal working example. Follow the link to learn why and how. For example, here one reason for this requirement is, that the description doesn't lead to the problem. When I tested, the theorem number was bold.
Here I show you
my minimal example:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\newtheorem{theo}{Theorem}
\makeatletter
\renewenvironment{proof}[1][\proofname]{%
\par\pushQED{\qed}\normalfont%
\topsep6\p@\@plus6\p@\relax
\trivlist\item[\hskip\labelsep\bfseries#1\@addpunct{.}]%
\ignorespaces
}{%
\popQED\endtrivlist\@endpefalse
}
\makeatother
\begin{document}
\begin{theo}
A statement which has to be proved.
\label{th:test}
\end{theo}
\begin{proof}[Proof of Theorem \ref{th:test}] Left as an exercise.
\end{proof}
\end{document}

- proof.png (4.06 KiB) Viewed 9463 times
So, it seems that you do it in a different way, just show us how.
Stefan