使用 \item 在 proof 环境中进行间距

使用 \item 在 proof 环境中进行间距

Q2 中的垂直空间应与 Q1 中的相同

    \documentclass[letterpaper,12pt]{article}
    \usepackage{empheq}  % loads »mathtools«, which in turn loads »amsmath«
    \usepackage{enumitem}
    \usepackage{graphicx}
    \usepackage{fancyvrb}
    \usepackage{amsfonts}
    \usepackage{epsfig}
    \usepackage{amssymb}
    \usepackage{amsmath}
    \usepackage{amsthm}
    \usepackage{verbatim}
    \usepackage[paper=letterpaper,left=0.5in,right=0.75in,top=0.75in,bottom=0.75in]{geometry}
    \newcommand{\Z}{\mathbb{Z}}
    \newcommand{\Q}{\mathbb{Q}}
    \newcommand{\R}{\mathbb{R}}
    \begin{document}
    
    \begin{enumerate}
        \item %Question 1
        \begin{enumerate}
            \item $[F:K] = 1$ if and only if $F=K$.
            \begin{proof}
            Suppose that $[F:K] = 1$. Then $\text{dim}_KF=1$, so there exists a basis $\{u\}$ of $F$ over $K$ consisting of a single element $u \in F$. Now, let $x \in F$. Then $x = au$ for some $a \in K$. In particular, we can write the multiplicative identity $1$ of both $F$ and $K$ as $1=bu$ for some $b \in K$. So $u = b^{-1} \in K$ since $K$ is a field. Hence $x=ab^{-1} \in K$ since $a,b \in K$ and $K$ is a field and so closed under multiplication. Therefore, $F \subseteq K$, and since we know that $K \subseteq F$, we have $F=K$ as desired.
            \item Conversely, suppose that $F=K$. We claim that \{1\} is a basis for $F$ as an $F$-vector space. We see that the set \{1\} is linearly independent since if $a\cdot1=0$, we must have $a=0$. We also see that \{1\} spans $F$ since each $f \in F$ can be written as $f=f\cdot1$. Hence \{1\} is a basis for $F$ as an $F$-vector space, and so $[F:K] = [F:F] = \text{dim}_FF=1$.
            \end{proof}
    
            \item If $[F:K]$ is prime, then there are no intermediate fields between $F$ and $K$.
            \begin{proof}
            Suppose, towards a contradiction, that $[F:K]$ is prime and that there exists some intermediate field $E$ between $F$ and $K$. Then we have $[F:K] = [F:E][E:K]=p$ for some prime $p$. Since $[F:K]$ is prime, then we must have one of $[F:E]$ or $[E:K]$ equal to 1 (and the other equal to $p$). If either $[F:E]$ or $[E:K]$ is equal to 1, then part a) implies that $E=F$ or $E=K$. But in either case, this contradicts the fact that $E$ is between $F$ and $K$. Therefore, there must be no intermediate fields between $F$ and $K$.
            \end{proof}
    
            \item If $u \in F$ has degree $n$ over $K$, then $n$ divides $[F:K]$.
            \begin{proof}
            Suppose that $u \in F$ has degree $n$ over $K$. Then $[K(u):K] = n$. Since $\{u\} \subseteq F$ and $F$ is a field extension of $K$, then $K(u)$ is a subfield of $F$. Now, \newline $[F:K]=[F:K(u)][K(u):K]=[F:K(u)]\cdot n$. Hence $n$ divides $[F:K]$ as desired.
            \end{proof}
        \end{enumerate}
            \item Give an example of a finitely generated field extension, which is not finite dimensional.
            \begin{proof}
            Let $K = \Q$, $E=\Q(\pi)$, and $F=\R$. Then $F$ is a field extension of $E$ and $E$ is a field extension of $K$. In particular, $E$ is a finitely generated transcendental field extension of $K$, since $\pi \in E$ is transcendental over $K$. We know that if $A$ is a finite dimensional field extension of $B$, then $A$ is a finitely generated algebraic field extension of $B$. Since $E$ is a transcendental field extension of $K$, the contrapositive of the previous statement implies that $E$ is not finite dimensional. Hence $\Q(\pi)$ is a finitely generated field extension of $\Q$ which is not finite dimensional, and we have found our example.
            \end{proof}
        \end{enumerate}
    \end{document}
   

我正在尝试编写一些证明,我注意到问题 1 的结尾和问题 2 的开头之间的垂直空间比问题 1 的不同部分之间的空间大。由于它们都使用相同的证明环境,我想知道为什么会出现这种情况。这可能是常规做法,但我认为我以前在其他论文中没有见过这种间距,所以我想知道是否要尝试调整它或保持原样。

答案1

一些观察:

  • \item第一个环境中只有一条指令proof,它的作用不大。这\item条指令恰好不会生成错误或警告消息,因为proof环境本身就是一个trivlist环境。我认为你应该删除这\item条指令,用一个简单的段落分隔符代替它。

  • \newline第三个环境中的指令创建proof了一个奇怪的段落。我会展示后续等式;你的读者可能会欣赏这一举动。

  • 我认为将第二个问题的答案嵌入到环境中看起来很奇怪——毕竟,第二个问题的答案是以“举个例子...”开头的proof。我会省略proof包装器。

  • 由于您正在加载enumitem包,因此您可以将该选项分配nosep给 2 级enumerate环境。

在此处输入图片描述

    \documentclass[letterpaper,12pt]{article}
    \usepackage{empheq}  % loads »mathtools«, which in turn loads »amsmath«
    \usepackage{enumitem}
    \usepackage{graphicx}
    \usepackage{fancyvrb}
%%%%    \usepackage{amsfonts} % is loaded by 'amssymb'
%%%%    \usepackage{epsfig} % is superseded by 'graphicx'
    \usepackage{amssymb,amsmath,amsthm}
    \usepackage{verbatim}
    \usepackage[paper=letterpaper,
      left=0.5in,right=0.75in,vmargin=0.75in]{geometry}
    \newcommand{\Z}{\mathbb{Z}}
    \newcommand{\Q}{\mathbb{Q}}
    \newcommand{\R}{\mathbb{R}}
    \begin{document}
    
    \begin{enumerate}
        \item %Question 1
        \begin{enumerate}[nosep]
            \item $[F:K] = 1$ if and only if $F=K$.
            \begin{proof}
            Suppose that $[F:K] = 1$. Then $\dim_K F=1$, so there exists a basis $\{u\}$ of $F$ over~$K$ consisting of a single element $u \in F$. Now, let $x \in F$. Then $x = au$ for some $a \in K$. In particular, we can write the multiplicative identity $1$ of both $F$ and $K$ as $1=bu$ for some $b \in K$. So $u = b^{-1} \in K$ since $K$ is a field. Hence $x=ab^{-1} \in K$ since $a,b \in K$ and $K$ is a field and so closed under multiplication. Therefore, $F \subseteq K$, and since we know that $K \subseteq F$, we have $F=K$ as desired.
            %%\item % <-- why?
 
            Conversely, suppose that $F=K$. We claim that $\{1\}$ is a basis for $F$ as an $F$-vector space. We see that the set $\{1\}$ is linearly independent since if $a\cdot1=0$, we must have $a=0$. We also see that $\{1\}$ spans $F$ since each $f \in F$ can be written as $f=f\cdot1$. Hence $\{1\}$ is a basis for $F$ as an $F$-vector space, and so $[F:K] = [F:F] = \dim_FF=1$.
            \end{proof}
    
            \item If $[F:K]$ is prime, then there are no intermediate fields between $F$ and $K$.
            \begin{proof}
            Suppose, towards a contradiction, that $[F:K]$ is prime and that there exists some intermediate field $E$ between $F$ and $K$. Then we have $[F:K] = [F:E][E:K]=p$ for some prime $p$. Since $[F:K]$ is prime, then we must have one of $[F:E]$ or $[E:K]$ equal to~$1$ (and the other equal to $p$). If either $[F:E]$ or $[E:K]$ is equal to~$1$, then part a) implies that $E=F$ or $E=K$. But in either case, this contradicts the fact that $E$ is between $F$ and $K$. Therefore, there must be no intermediate fields between $F$ and $K$.
            \end{proof}
    
            \item If $u \in F$ has degree $n$ over $K$, then $n$ divides $[F:K]$.
            \begin{proof}
            Suppose that $u \in F$ has degree $n$ over~$K$. Then $[K(u):K] = n$. Since $\{u\} \subseteq F$ and~$F$ is a field extension of $K$, then $K(u)$ is a subfield of $F$. Now, %\newline
            \[
            [F:K]=[F:K(u)][K(u):K]=[F:K(u)]\cdot n\,.
            \] 
            Hence $n$ divides $[F:K]$ as desired.
            \end{proof}
        \end{enumerate}
        
        \item %Question 2
        Give an example of a finitely generated field extension which is not finite dimensional.
        
        %\begin{proof}
        Let $K = \Q$, $E=\Q(\pi)$, and $F=\R$. Then $F$ is a field extension of $E$ and $E$ is a field extension of $K$. In particular, $E$ is a finitely generated transcendental field extension of $K$, since $\pi \in E$ is transcendental over $K$. We know that if $A$ is a finite dimensional field extension of~$B$, then~$A$ is a finitely generated algebraic field extension of $B$. Since $E$ is a transcendental field extension of $K$, the contrapositive of the previous statement implies that $E$ is not finite dimensional. Hence $\Q(\pi)$ is a finitely generated field extension of $\Q$ which is not finite dimensional, and we have found our example.
        %\end{proof}
    \end{enumerate}
    \end{document}
   

答案2

根据您的MWE理解,您需要在证明环境的末尾添加更多的垂直空间,如果我是正确的,请尝试修改后的方法MWE

\documentclass[letterpaper,12pt]{article}
\usepackage{empheq}  % loads »mathtools«, which in turn loads »amsmath«
\usepackage{enumitem}
\usepackage{graphicx}
\usepackage{fancyvrb}
\usepackage{amsfonts}
\usepackage{epsfig}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{verbatim}
\usepackage[paper=letterpaper,left=0.5in,right=0.75in,top=0.75in,bottom=0.75in]{geometry}
\usepackage{etoolbox}%%added

\newcommand{\Z}{\mathbb{Z}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\R}{\mathbb{R}}

\AtEndEnvironment{proof}{\bigskip}%%added

\begin{document}

\begin{enumerate}
    \item %Question 1
    \begin{enumerate}
        \item $[F:K] = 1$ if and only if $F=K$.
        \begin{proof}
        Suppose that $[F:K] = 1$. Then $\text{dim}_KF=1$, so there exists a basis $\{u\}$ of $F$ over $K$ consisting of a single element $u \in F$. Now, let $x \in F$. Then $x = au$ for some $a \in K$. In particular, we can write the multiplicative identity $1$ of both $F$ and $K$ as $1=bu$ for some $b \in K$. So $u = b^{-1} \in K$ since $K$ is a field. Hence $x=ab^{-1} \in K$ since $a,b \in K$ and $K$ is a field and so closed under multiplication. Therefore, $F \subseteq K$, and since we know that $K \subseteq F$, we have $F=K$ as desired.
        \item Conversely, suppose that $F=K$. We claim that \{1\} is a basis for $F$ as an $F$-vector space. We see that the set \{1\} is linearly independent since if $a\cdot1=0$, we must have $a=0$. We also see that \{1\} spans $F$ since each $f \in F$ can be written as $f=f\cdot1$. Hence \{1\} is a basis for $F$ as an $F$-vector space, and so $[F:K] = [F:F] = \text{dim}_FF=1$.
        \end{proof}

        \item If $[F:K]$ is prime, then there are no intermediate fields between $F$ and $K$.
        \begin{proof}
        Suppose, towards a contradiction, that $[F:K]$ is prime and that there exists some intermediate field $E$ between $F$ and $K$. Then we have $[F:K] = [F:E][E:K]=p$ for some prime $p$. Since $[F:K]$ is prime, then we must have one of $[F:E]$ or $[E:K]$ equal to 1 (and the other equal to $p$). If either $[F:E]$ or $[E:K]$ is equal to 1, then part a) implies that $E=F$ or $E=K$. But in either case, this contradicts the fact that $E$ is between $F$ and $K$. Therefore, there must be no intermediate fields between $F$ and $K$.
        \end{proof}

        \item If $u \in F$ has degree $n$ over $K$, then $n$ divides $[F:K]$.
        \begin{proof}
        Suppose that $u \in F$ has degree $n$ over $K$. Then $[K(u):K] = n$. Since $\{u\} \subseteq F$ and $F$ is a field extension of $K$, then $K(u)$ is a subfield of $F$. Now, \newline $[F:K]=[F:K(u)][K(u):K]=[F:K(u)]\cdot n$. Hence $n$ divides $[F:K]$ as desired.
        \end{proof}
    \end{enumerate}
        \item Give an example of a finitely generated field extension, which is not finite dimensional.
        \begin{proof}
        Let $K = \Q$, $E=\Q(\pi)$, and $F=\R$. Then $F$ is a field extension of $E$ and $E$ is a field extension of $K$. In particular, $E$ is a finitely generated transcendental field extension of $K$, since $\pi \in E$ is transcendental over $K$. We know that if $A$ is a finite dimensional field extension of $B$, then $A$ is a finitely generated algebraic field extension of $B$. Since $E$ is a transcendental field extension of $K$, the contrapositive of the previous statement implies that $E$ is not finite dimensional. Hence $\Q(\pi)$ is a finitely generated field extension of $\Q$ which is not finite dimensional, and we have found our example.
        \end{proof}
    \end{enumerate}
\end{document}

如果我的理解有误,请纠正我……

相关内容