Hey when you are in the proof environment using the amsthm package the QED square at the end of the proof is unfilled. Is there a way to make it \blacksquare.
I tried searching the forum but could not find the answer.
Math & Science ⇒ Black filled QED in amsthm
NEW: TikZ book now 40% off at Amazon.com for a short time.

Black filled QED in amsthm
Hi,
redefine the \qedsymbol command (from the amsthm package):
redefine the \qedsymbol command (from the amsthm package):
Code: Select all
\documentclass{article}
\usepackage{amsthm,amssymb}
\renewcommand\qedsymbol{$\blacksquare$}
\begin{document}
\begin{proof}
dummy text
\end{proof}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
-
- Posts: 8
- Joined: Sun Aug 09, 2009 3:29 am
Re: Black filled QED in amsthm
Excelllent thank you so much for that.