I have a problem with hyperref and ntheorem. It sees that one of those packages does not like \paragraph{bla}. I use Winedt and Windows 7. This is my sample code which does not work. If I replace \paragraph{mu} with \textbf{mu} it works, but i really want to use \paragraph{} in my thesis. Can anyone tell me where the problem lies? I tried reversing the order of packages, it did not help.
Code: Select all
\documentclass[pdftex,a4paper]{article}
\usepackage[ngerman]{babel}
\usepackage[hyperref]{ntheorem}
\usepackage[pdftex]{hyperref}
\newtheorem{definition}{Definition}
\begin{document}
\paragraph{mu}
\begin{definition}
\end{definition}
\end{document}