blob: 967256c75a3f33115ad83262ea67911ba445caaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
This is a test file of TeXetting for vaxima
tested function: tex(exp,"filename");
texnoeval();
*/
/* set autolabeling mode for TeX and start with 15 */
texautolabel(15);
texlabelright(); /* set right-labeling mode */
texnoeval(); /* set non-evaluation mode */
tex(integrate(3*mu^3-4,mu),"tex6.tex");
tex(diff(sin(alpha^3),alpha),"tex6.tex");
tex(taylor(sqrt(omega+1),omega,0,5),"tex6.tex");
tex(abs(-5),"tex6.tex");
texend("tex6.tex");
|