MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

Howto change TraditionalForm Output

  • To: mathgroup at smc.vnet.net
  • Subject: [mg96563] Howto change TraditionalForm Output
  • From: "Serych Jakub" <Serych at panska.cz>
  • Date: Mon, 16 Feb 2009 06:59:32 -0500 (EST)

Hi x_

In some (IMHO mainly European) countries, there is tradition to use other
names of the function then are these used in american English. For example
here in Czech Republic we use "tg" and "cotg" in place of "tan" and "cot".

I'm trying to modify the behaviour of M7 like this:

Unprotect[Tan];
Format[Tan[x_], TraditionalForm] := "tg(" <> ToString[x] <> ")";
Protect[Tan] ; 

It seems to work fine in the cases:

TraditionalForm[Tan[a + b]]
TraditionalForm[Tan[z]]
TraditionalForm[Tan[Pi]/5]

but it doesn't work in case like:

TraditionalForm[Tan[z/5]]

Does anybody know what is the right syntax to change the Format of
TraditionalForm?

Thx in advance

Jakub


  • Prev by Date: Re: Length of a held expression
  • Next by Date: Re: How to stretch a image
  • Previous by thread: Re: Division by zero, despite strong hint
  • Next by thread: Re: Howto change TraditionalForm Output