Math & Science ⇒ Black filled QED in amsthm
-
- Posts: 8
- Joined: Sun Aug 09, 2009 3:29 am
Black filled QED in amsthm
I tried searching the forum but could not find the answer.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Black filled QED in amsthm
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}
-
- Posts: 8
- Joined: Sun Aug 09, 2009 3:29 am