GeneralTrouble with \jmath

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
lionel21
Posts: 3
Joined: Fri Oct 03, 2008 10:41 pm

Trouble with \jmath

Post by lionel21 »

Good evening,
I have used a latex file on my new opensuse 11.0. This file works well on my "old" debian. The instruction \jmath provokes this error message :

! Package mathptmx Error: The symbols \jmath, \amalg and \coprod
(mathptmx) are not available with this package.


I have copied these files (mathptm.sty and mathptmx.sty) from my debian directory into my opensuse directory : I have the same message.

Who have a solution ?
Why the instruction \imath provokes no error ?

Thank you very much..

Lionel

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Trouble with \jmath

Post by gmedina »

Hi Lionel,

the error message is self-descriptive. Those commands are not available with he mathptmx package. As an alternative, you could use the txfonts:

Code: Select all

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{txfonts}

\begin{document}

$ \jmath \amalg \coprod $

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
lionel21
Posts: 3
Joined: Fri Oct 03, 2008 10:41 pm

Trouble with \jmath

Post by lionel21 »

Thanks very much, it works very well with your example but I have an other trouble with my files :

Code: Select all

(/usr/share/texmf/tex/latex/amsmath/amsbsy.sty)
(/usr/share/texmf/tex/latex/amsmath/amsopn.sty)

! LaTeX Error: Command \iint already defined.
               Or name \end... illegal, see p.192 of the manual.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.506 ...d{\iint}{\DOTSI\protect\MultiIntegral{2}}
                                                  
? 
I'am using these packages :

Code: Select all

\usepackage{amsfonts,amssymb,amsmath,amscd,color,graphicx,minitoc,multicol,subfigure}
\usepackage[all]{xy}
\usepackage{bbold,multicol,algorithme,algorithmic,slashbox}
%pour texGraph
\usepackage{xcolor,rotating,epic,eepic}
% pour latex2html
\usepackage{color}
\pagecolor{white} 
Thank you very much for all answer.

Lionel
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Trouble with \jmath

Post by Stefan Kottwitz »

Hi Lionel,

have a look here: Package reports “command already defined”, that text describes the case of \iint.

Stefan
LaTeX.org admin
lionel21
Posts: 3
Joined: Fri Oct 03, 2008 10:41 pm

Re: Trouble with \jmath

Post by lionel21 »

It works very well.

Thanks.
Post Reply