On Mon, 28 Jul 2014 13:29:58 +0200
Xan <dxpubl...@telefonica.net> ha escrit:

> Hi,
> 
> I run this code:
> 
> \usemodule[filter]
> 
> \defineexternalfilter
>     [python]
>     [filtercommand={python \externalfilterinputfile\space > 
> \externalfilteroutputfile},cache=force]
> 
> 
> \starttext
> 
> 
> Resol les equacions següents i comprova'n la solució
> \startitemize[a,columns]
> \item $3x + 2 = 35$
> \item $11x – 18 = 4$
> \item $56x + 33 = -23$
> \item $5x + 25 = 125$
> \stopitemize
> 
> \starttextrule{Solucions}
> 
> \startitemize[a,text]
> \item \startpython
> from sympy.solvers import solve
> from sympy import Symbol
> from sympy import Eq
> 
> x = Symbol('x')
> for solucio in solve(Eq(3*x + 2, 35), x):
>       print(solucio)
> 
> \stoppython
> \stopitemize
> \stoptextrule
> 
> 
> \stoptext
> 
> 
> with the result of new line after "(a)." and "11" (the solution of the 
> equation).
> 
> I attach the pdf.
> 
> How can avoid this behaviour?
> 
> 
> Thanks,
> Xan
> Am 28.07.2014 um 13:29 schrieb Xan <dxpublica at telefonica.net>:
> 
> > Hi,
> > 
> > I run this code:
> > 
> > \usemodule[filter]
> > 
> > \defineexternalfilter
> >    [python]
> >    [filtercommand={python \externalfilterinputfile\space > 
> > \externalfilteroutputfile},cache=force]
> > 
> > […]
> > 
> > with the result of new line after "(a)." and "11" (the solution of the 
> > equation).
> > 
> > I attach the pdf.
> > 
> > How can avoid this behavior?
> 
> Adding “location=text” to \defineexternalfilter should help (untested).
> 
> Wolfgang

It works (tested! ;)

Thanks,

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to