Répondre à : Ecrire un système d'équation

Accueil Forums Programmation WIMS Programmation dans le langage wims Ecrire un système d'équation Répondre à : Ecrire un système d'équation

#3863
jm.evers
Participant
Up
0
Down
::

in latex mode (math-with-images) the automatic equation numbering is easy…use


\begin{equation}
    f(x) = x^3 
    g(x) = x^4
    h(x) = x^5
  \end{equation}

however in wims mathml this is not -yet- supported…you have to manually add the numbering

So in wims_mathml use something like


\left\{
 \begin{array}{lclr}
   f(x) & = & \sin(x^{2}) & (1) \\
   h(x) & = & \sin\left(x^{\frac{1}{2}}\right) & (2) \\
   i(x) & = & \sin(2x) & (3) \\
   j(x) & = & \sin(3\cdot x) & (4) \\
   k(x) & = & \sin(\sqrt{x}) & (5) 
 \end{array}
\right.

hope this helps…
Joke

  • Cette réponse a été modifiée le il y a 6 années par jm.evers.