Deseo cambiar el espaciado en el entorno de prueba de amsthm (en mi caso, aumentar el espaciado). He incluido mi intento. No quiero numeración así que incluí el archivo *. Sin embargo, mi intento falla porque no incluye el símbolo QED al final de la prueba en el extremo derecho (que necesito). ¿Alguien tiene alguna idea sobre cómo conseguir un mayor espacio Y un símbolo QED? He incluido el resultado de mi código para que todos puedan ver la diferencia entre mi entorno myplain2 y los entornos \begin{proof} (mi código tiene el espacio que quiero, pero ningún símbolo QED, y el entorno \begin{proof} sí no tiene el espacio que quiero, pero tiene el símbolo 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}
Respuesta1
No estoy seguro de cuál sería el motivo. De todos modos…
\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}
Respuesta2
Puede utilizar el paquete setspace para establecer el espaciado de la prueba con el entorno espacial.
Como ejemplo se da a continuación:
\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}