Whats the Latex code for inserting a small boxes at the end of a remark sentence like the ones in the image above?
Asked
Active
Viewed 233 times
1 Answers
1
The remarks of the image are proof environments of amsthm. No need to type directly the \qedsymbol:
\documentclass{article}
\usepackage{lipsum,parskip}
\usepackage{amsthm,amssymb}
\begin{document}
\begin{proof}
This is classwork, straight from the lectures notes.
\end{proof}
\renewcommand\proofname{Remark}
\begin{proof}
This is classwork, straight from the lectures notes.
\end{proof}
\begin{proof}
\lipsum[1][1-5]
\end{proof}
With \qedsymbol\ changed to \renewcommand\qedsymbol{$\boxtimes$}\qedsymbol:
\begin{proof}[Whatever]
\lipsum[2][1-3]
\end{proof}
\end{document}
Fran
- 80,769
-
Wow thanks, this solved the problems that came when \square seemed to have worked. – Volvoman Jul 04 '20 at 18:54

\square, a math-mode macro provided by theamssymbpackage? – Mico Jul 04 '20 at 07:41ΟΕΔ(ὅπερ ἔδει δεîξαι)? :-) – Bernard Jul 04 '20 at 08:31