amsthm の証明環境の間隔を変更したい (私の場合は、間隔を広げる)。私の試みを含めました。番号を付けたくないので * を含めました。しかし、私の試みは、証明の右端の最後にある QED シンボル (必要なシンボル) が含まれていないため失敗しました。間隔を広げ、かつ QED シンボルを表示する方法について、何かアイデアはありますか? myplain2 環境と \begin{proof} 環境の違いを誰もが確認できるように、コードの出力を含めました (私のコードには必要な間隔がありますが、QED シンボルがありません。\begin{proof} 環境には必要な間隔はありませんが、QED シンボルがあります)。
\newtheoremstyle{myplain2}
{-\baselineskip\topsep} % ABOVESPACE
{\topsep} % BELOWSPACE
{\normalfont\setstretch{2}} % BODYFONT
{0pt} % INDENT (empty value is the same as 0pt)
{\bfseries} % HEADFONT
{.} % HEADPUNCT
{5pt plus 1pt minus 1pt} % HEADSPACE
{}
\theoremstyle{myplain2}
\newtheorem*{proof_new}{Proof}
\begin{proof}
Oh hi Mark.\\
Oh hi Mark.\\
Oh hi Mark.
\end{proof}
\begin{proof_new}
Oh hi Mark.\\
Oh hi Mark.\\
Oh hi Mark.
\end{proof_new}
答え1
理由はよく分かりません。とにかく…
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{setspace}
\usepackage{lipsum} % for mock text
% spaced proof
\newenvironment{sproof}
{\par\vspace{-\topsep}\begin{spacing}{1.5}\begin{proof}}
{\end{proof}\end{spacing}\par\vspace{-\topsep}}
\begin{document}
\lipsum[1][1-5]
\begin{proof}
\lipsum[2][1-5]
\end{proof}
\lipsum[1][1-5]
\begin{sproof}
\lipsum[2][1-5]
\end{sproof}
\lipsum[1][1-5]
\end{document}
答え2
setspace パッケージを使用して、スペース環境で証明の間隔を設定できます。
以下に例を示します。
\documentclass[12pt,a4paper]{book}
\usepackage{setspace}
\renewcommand{\baselinestretch}{1}
\begin{document}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\begin{spacing}{2}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing.
\end{spacing}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown pri.
\end{document}