使“枚举”从新行开始

使“枚举”从新行开始

我想换enumerate行,但无法使用,\newline因为没有行结束!
代码如下:

\newtheorem*{quoz}{Teoremi del quoziente}
\begin{quoz} % \newline here does not work
    \begin{enumerate}
        \item Se $\lim\limits_{x \to \alpha} |f(x)| = +\infty$ allora $\lim\limits_{x \to \alpha} \frac1{f(x)} = 0$.
        \item Se $\lim\limits_{x \to \alpha} f(x) = 0$ allora $\lim\limits_{x \to \alpha} \frac1{|f(x)|} = +\infty$.
        \item Se $\lim\limits_{x \to \alpha} f(x) = l$ allora $\lim\limits_{x \to \alpha} \frac1{f(x)} = \frac1l$.
        \item Se $\lim\limits_{x \to \alpha} f(x) = l$ e $\lim\limits_{x \to \alpha} g(x) = m \neq 0$, allora $\lim\limits_{x \to \alpha} \frac{f(x)}{g(x)} = \frac lm$.
    \end{enumerate}
\end{quoz}

目前的问题在于,第一点从定理标题开始。我觉得有点丑。有没有办法让它从新行开始?

我尝试过

\begin{quoz}$ $\newline
    \begin{enumerate}
%...

但这会增加太多空间,感觉像是黑客行为。有没有更好的方法?

编辑:我发现由于某些奇怪的原因,这是有效的

\begin{quoz}$ $
    \begin{enumerate}
%...

我不明白为什么,因为$ $应该是内联...不过,有没有更好的方法?

答案1

这里有一个解决方案,它还教你如何避免每次都定义一个新的未编号定理。如果你想从列表开始, *-versiongenthm会中断。但是,我发现这种风格很糟糕,我会通过陈述我们对函数做出的一般假设来开始这个定理。

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}

\usepackage{amsthm}

\newtheorem*{nonamethm}{\nonamethmname}
\newcommand{\nonamethmname}{}

\newenvironment{genthm}[1]
 {\renewcommand{\nonamethmname}{#1}\nonamethm}
 {\endnonamethm}
\newenvironment{genthm*}[1]
 {\renewcommand{\nonamethmname}{#1}\nonamethmcheck}
 {\endnonamethm}

\newcommand\nonamethmcheck[1][]{%
  \if\relax\detokenize{#1}\relax
    \nonamethm\relax
  \else
    \nonamethm[#1]%
  \fi
  \mbox{}%
}

\begin{document}

\begin{genthm*}{Teoremi del quoziente}
\begin{enumerate}
\item Se $\lim\limits_{x \to \alpha} |f(x)| = +\infty$,
  allora $\lim\limits_{x \to \alpha} \frac{1}{f(x)} = 0$.

\item Se $\lim\limits_{x \to \alpha} f(x) = 0$,
  allora $\lim\limits_{x \to \alpha} \frac1{|f(x)|} = +\infty$.

\item Se $\lim\limits_{x \to \alpha} f(x) = l \neq 0$,
  allora $\lim\limits_{x \to \alpha} \frac1{f(x)} = \frac{1}{l}$.

\item Se $\lim\limits_{x \to \alpha} f(x) = l$ e $\lim\limits_{x \to \alpha} g(x) = m \neq 0$,
  allora $\lim\limits_{x \to \alpha} \frac{f(x)}{g(x)} = \frac{l}{m}$.
\end{enumerate}
\end{genthm*}

\begin{genthm}{Teoremi del quoziente}
Siano $f$ e $g$ funzioni definite in un intorno bucato di~$\alpha$.
\begin{enumerate}
\item Se $\lim\limits_{x \to \alpha} |f(x)| = +\infty$,
  allora $\lim\limits_{x \to \alpha} \frac{1}{f(x)} = 0$.

\item Se $\lim\limits_{x \to \alpha} f(x) = 0$,
  allora $\lim\limits_{x \to \alpha} \frac1{|f(x)|} = +\infty$.

\item Se $\lim\limits_{x \to \alpha} f(x) = l \neq 0$,
  allora $\lim\limits_{x \to \alpha} \frac1{f(x)} = \frac{1}{l}$.

\item Se $\lim\limits_{x \to \alpha} f(x) = l$ e $\lim\limits_{x \to \alpha} g(x) = m \neq 0$,
  allora $\lim\limits_{x \to \alpha} \frac{f(x)}{g(x)} = \frac{l}{m}$.
\end{enumerate}
\end{genthm}

\end{document}

两种环境都支持可选参数(位于强制参数之后)。

在此处输入图片描述

相关内容