The steinmetz package needs the pict2e package, and it's seems to me that this package when loaded redefines the references of the picture environment.
Does anyone came across this problem, and does it have any solution?
Exemple file (try first with steinmetz package commented and then uncommented):
Code: Select all
\documentclass[10pt,a4paper,fleqn,brazil]{article}
\usepackage[left=3cm,right=2cm,top=2.5cm,bottom=2cm]{geometry}
\usepackage{setspace}
\usepackage{babel} % Suporte para Portugues do Brasil
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{amsmath,amssymb,amsthm,amsfonts}
%\usepackage{steinmetz}
\usepackage{cancel}
\begin{document}
\verb#$a + \cancel{b} = \cancel{b} + c$# \hspace{2cm} $a + \cancel{b} = \cancel{b} + c$
\verb#$a + \cancelto{0}{b} = c + d$# \hspace{2cm} $a + \cancelto{0}{b} = c + d$
\end{document}
Jether