There is a square sign in the end of proof environment. I proved something outside of proof environment. Because I had to have 'Proof of Theorem 3',
I need to put a square as the same size as proof square. this \square is too small. any solution?
Asked
Active
Viewed 58 times
0
Bernard
- 271,350
user9272398
- 483
1 Answers
1
If you are using amsthm.sty then its simple as suggested by egreg and the usage is:
\documentclass{book}
\usepackage{amsthm}
\begin{document}
\begin{proof}[Proof of ...]
....
\end{proof}
\end{document}
As you are not providing any MWE I assumed that you are using standard LaTeX class file...
MadyYuvi
- 13,693
\Box. If this does not fit, give aMWE. – Denis Oct 06 '20 at 05:59amsthmthen\qedto make a box flush right, or\qedsymboljust to make the box on its own. – David Carlisle Oct 06 '20 at 06:42\begin{proof}[Proof of Theorem~\ref{label}]followed by\end{proof}at the end. Herelabelstands for the actual label you used in the said theorem. – egreg Oct 06 '20 at 12:13