↧
Answer by cabohah for Custom proof environment: spacing issue with when...
You could add \ignorespaces to your definition to ignore spaces at the beginning of the environment:\documentclass{article}\usepackage{amsthm} \renewenvironment{proof}[1][Proof]{\noindent{\bfseries...
View ArticleAnswer by daleif for Custom proof environment: spacing issue with when...
Why even redefine the proof env when the one from amsthm works.In order to make it bold you can just use\usepackage{xpatch}\xpatchcmd\proof{\itshape}{\bfseries}{}{\typeout{Patch of proof failed}}The...
View ArticleCustom proof environment: spacing issue with when optional argument given
Consider the following code, the purpose of which is to have a proof environment in which the "Proof." bit is bold.\documentclass{article}\usepackage{amsthm}...
View Article