1

我的乳胶文档有问题。当我使用下面的代码使用引理时,它会在每个引理的末尾显示一个黑色的小矩形。

代码:

 \documentclass{IEEEtran}
    \usepackage{eucal}
    \usepackage{algorithm,algorithmic}
    \begin{document}
    
    \section{ Analysis}
    
    This section discusses essential proofs of some of the properties explained in the earlier,\\
    \newtheorem{theorem}{\textbf{Lemma}}
    
    \begin{theorem}
        Lemma statement 1
    \end{theorem} 
    
    \begin{IEEEproof}
        The body of the lemma.The body of the lemma. The body of the lemma. The body of the lemma.  The body of the lemma.The body of the lemma.The body of the lemma. The body of the lemma.   The body of the lemma.The body of the lemma.The body of the lemma. The body of the lemma.
    \end{IEEEproof}
    
    \newtheorem{theorem2}{\textbf{Lemma}}
    \begin{theorem}
        Lemma statement 2
    \end{theorem} 
    \begin{IEEEproof}
        The body of the lemma. The body of the lemma. The body of the lemma. The body of the lemma. The body of the lemma. The body of the lemma. The body of the lemma. The body of the lemma. The body of the lemma.
    \end{IEEEproof}
    
    \end{document}

上面的代码显示了下面的输出,

在此处输入图像描述

4

2 回答 2

2

正如建议的那样,我发表我的评论作为答案:

IEEEproof正如环境定义的那样,这个矩形标志着证明 (qed) 的结束。如果您不想使用这种证明格式,您可以将此部分设为常规段落并在需要时调整间距:

    \begin{theorem}
        Lemma statement 1
    \end{theorem} 
    
\textit{Proof:}
        The body of the lemma.The body of the lemma. The body of the lemma. The body of the lemma.  The body of the lemma.The body of the lemma.The body of the lemma. The body of the lemma.   The body of the lemma.The body of the lemma.The body of the lemma. The body of the lemma.
    

给你这个:

在此处输入图像描述

于 2021-01-01T12:59:59.550 回答
0

我正在阅读此 CTAN urlIEEEtran上提供的软件包的 pdf 指南。

第 XII A 节,证明,第 15 页,明确指出:

QED 符号自动放置在每个证明的末尾。... 封闭式(默认)和开放式表单分别提供为\IEEEQEDclosed\IEEEQEDopen。要将默认值从关闭更改为打开(某些期刊和/或作者更喜欢打开形式),只需\IEEEQED根据需要重新定义:

\renewcommand{\IEEEQED}{\IEEEQEDopen}

同样的方法,添加

\renewcommand{\IEEEQED}{}

第二个参数留空,在你的序言末尾,将使完整或空的正方形从每个证明的最后一行的右端消失。

希望对您有所帮助,2021 年快乐!!

于 2021-01-01T09:43:20.237 回答