示例第一行的分数与示例标题重叠

示例第一行的分数与示例标题重叠

我正在写一个例子,题目是求几个数字的勒让德符号等于多少。我使用的定理样式是“nonumberbreak”,因为我喜欢让我的例子从下一行开始,但由于问题的第一行有很大一部分,所以与示例标题有一些重叠。

Legendre 示例重叠

\documentclass{report}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage[amsthm]{ntheorem}
\usepackage{lipsum}

\clubpenalty=10000 \widowpenalty=10000

\newcommand{\qedhere}{\ifmmode\qed\else\hfill\proofSymbol\fi}

\newtheorem{theorem}{Theorem}[section]
\newtheorem{definition}[theorem]{Definition}

\theoremstyle{nonumberbreak}
\theoremseparator{:}
\newtheorem{example}{Example}

\begin{document}

\begin{example}
\normalfont
Find $\left(\dfrac{3}{13}\right)$, $\left(\dfrac{5}{13}\right)$ and  $\left(\dfrac{9}{13}\right)$.
\end{example}

\end{document}

有什么方法可以解决这个问题或者让“示例”和下一行之间的间隙更大一些?

任何帮助都将不胜感激,谢谢。

答案1

ntheorem一个粗鲁的解决方案:在主体之前插入一些行:

\documentclass{report}
    \usepackage{amsmath}
    \usepackage[amsthm]{ntheorem}
    \usepackage{lipsum}
\clubpenalty=10000 \widowpenalty=10000
\newcommand{\qedhere}{\ifmmode\qed\else\hfill\proofSymbol\fi}

\newtheorem{theorem}{Theorem}[section]
\newtheorem{definition}[theorem]{Definition}
\theoremstyle{nonumberbreak}
\theoremseparator{:\newline}
\newtheorem{example}{Example}

    \begin{document}
\begin{example}
\mbox{}\\[-2ex]% <---- added
Find $\left(\dfrac{3}{13}\right)$, $\left(\dfrac{5}{13}\right)$ and  $\left(\dfrac{9}{13}\right)$.
\end{example}
    \end{document}    

在此处输入图片描述

相关内容