5

I'm interested in indenting my proofs so that they look like this. Please note that the alignment of the word "proof" with the word "theorem" is significant. However, Google does not appear to yield an answer.

Theorem: If there is a quadratic form that is Lipschitz then there is an isotropic 
         manifold locally resembling ℍ[x] in the quotient of Ker(ϕ) and ℍⁿ ⊗ G

  Proof: Let ψ be a square-summable sequence in the rational quotient group. A simple
         application of trichotomy completes the proof, which is left as an exercise for
         the reader.
Tom O.
  • 51
  • 2

1 Answers1

3

I know the OP no longer wishes to use this formatting, but in case anyone else is interested I used something like the following to align entries in my CV. It could also be applied here.

\documentclass{amsart}
\usepackage{lipsum}

\newcommand{\mycommand}[2]{%
    \par\addvspace{\baselineskip}
    \noindent
    \begin{minipage}[t]{0.19\textwidth}
        \begin{flushright}
            \textbf{#1}
        \end{flushright}
    \end{minipage}
    \hfill
    \begin{minipage}[t]{0.79\textwidth}
        \begin{flushleft}
            #2
        \end{flushleft}
    \end{minipage}
    \par\addvspace{\baselineskip}
}

\begin{document}
\lipsum[66]

\mycommand{Theorem:}{If there is a quadratic form that is Lipschitz then there is an isotropic manifold locally resembling $\mathbb{H}[x]$ in the quotient of Ker$({\phi})$ and $\mathbb{H}^{n}\otimes G$}

\mycommand{Proof:}{Let $\psi$ be a square-summable sequence in the rational quotient group. A simple application of trichotomy completes the proof, which is left as an exercise for the reader.}

\mycommand{Proposition:}{Some proposition}

\lipsum[75]
\end{document}

enter image description here

erik
  • 12,673