Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I am using the amsmath package. I just want a black box at the end of a proof, right-justified.

\blacksquare and \box both cause errors.

Actually, I'd prefer a musical quarter note if that's possible :)

share|improve this question
The wasysym package provides \quarternote. – Torbjørn T. Oct 7 '11 at 1:39
what, precisely, are the errors? the open square used by amsthm (not defined in amsmath) is the open box at location hex03 in the msam font if amsfonts are loaded, otherwise it's a drawn box. if you're using amsthm, you can simply \renewcommand{\qedsymbol}{...} with whatever symbol you want, but if you're not using amsthm, i can't help without knowing more. – barbara beeton Oct 7 '11 at 21:15

1 Answer

Are you including the appropriate packages?

\documentclass{article}

\usepackage{amsmath}%
\usepackage{MnSymbol}%
\usepackage{wasysym}%

\begin{document}
$\blacksquare$  \halfnote \quarternote
\end{document}

See LaTeX Comprehensive symbols list.

share|improve this answer
I was only including amsmath – iDontKnowBetter Oct 7 '11 at 1:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.