svjour3
class. According to the manual, \smartqed
should produce a right justified qed symbol, but it does not. On the other hand, \qed
works fine. What am I doing wrong?Code: Select all
\RequirePackage{fix-cm}
\documentclass[smallextended]{svjour3}
\usepackage{graphicx}
\usepackage{mathptmx}
\usepackage{amssymb,amsmath,amsfonts,latexsym}
\begin{document}
\begin{theorem}
If $X$, then $Y$.
\end{theorem}
\begin{proof}
Clear. \smartqed
\end{proof}
\begin{theorem}
If $X$, then $Y$.
\end{theorem}
\begin{proof}
Clear. \qed
\end{proof}
\end{document}