<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Oi Eduardo, <br><br>Por aqui tudo tranquilo. <br><br>Como abrir um arquivo myfile.bin? Ver abaixo. <br><br>Inté+, <br>L. <br><br><pre>-------------- next part --------------<br>A non-text attachment was scrubbed...<br>Name: array_plot_204.tex<br>Type: text/x-tex<br>Size: 1728 bytes<br>Desc: not available<br>URL: <<a href="http://tug.org/pipermail/pstricks/attachments/20140409/f89b2d34/attachment-0001.bin" target="_blank">http://tug.org/pipermail/pstricks/attachments/20140409/f89b2d34/attachment-0001.bin</a>><br> <br>------------------------------<br> </pre><br><br><div>> From: pstricks-request@tug.org<br>> Subject: PSTricks Digest, Vol 135, Issue 4<br>> To: pstricks@tug.org<br>> Date: Wed, 9 Apr 2014 12:00:04 +0200<br>> <br>> Send PSTricks mailing list submissions to<br>>      pstricks@tug.org<br>> <br>> To subscribe or unsubscribe via the World Wide Web, visit<br>>   http://tug.org/mailman/listinfo/pstricks<br>> or, via email, send a message with subject or body 'help' to<br>>       pstricks-request@tug.org<br>> <br>> You can reach the person managing the list at<br>>       pstricks-owner@tug.org<br>> <br>> When replying, please edit your Subject line so it is more specific<br>> than "Re: Contents of PSTricks digest..."<br>> <br>> <br>> Today's Topics:<br>> <br>>    1. arrayjob and multiple array elements in one pstricks function<br>>       does not worked as expected (Juergen Rose)<br>>    2. Re: arrayjob and multiple array elements in one pstricks<br>>       function does not worked as expected (Herbert Voss)<br>> <br>> <br>> ----------------------------------------------------------------------<br>> <br>> Message: 1<br>> Date: Wed, 9 Apr 2014 09:00:38 +0200<br>> From: Juergen Rose <rose@rz.uni-potsdam.de><br>> To: <pstricks@tug.org><br>> Subject: [pstricks] arrayjob and multiple array elements in one<br>>         pstricks function does not worked as expected<br>> Message-ID: <1397026838.11247.1.camel@impala.homenet><br>> Content-Type: text/plain; charset="utf-8"<br>> <br>> Hi,<br>> <br>> I justed wrote my first latex file with array job. I tried to plot a<br>> series of curves with five different parameters (Rprobe, Rmax,<br>> LineColor, LabelPos and LabelVal). I am not able to use the array<br>> elements for LineColor and Rmax. E.g., f I try to use the line<br>> \psline[linecolor=\LineColors(\iInd)](150,\cachedata)(160,\cachedata) ,<br>> xelatex complains about:<br>> ! Undefined control sequence.<br>> \in@ #1#2->\begingroup \def \in@@ <br>>                                   ##1#1{}\toks@ \expandafter {\in@@<br>> #2{}{}#1...<br>> l.39     }<br>> <br>> The complete latex file is in the attachment. Any hint is deeply<br>> appreciated.<br>> -- <br>> rose@rz.uni-potsdam.de <rose@rz.uni-potsdam.de><br>> Universit?t Potsdam<br>> <br>> -------------- next part --------------<br>> A non-text attachment was scrubbed...<br>> Name: array_plot_204.tex<br>> Type: text/x-tex<br>> Size: 1728 bytes<br>> Desc: not available<br>> URL: <http://tug.org/pipermail/pstricks/attachments/20140409/f89b2d34/attachment-0001.bin><br>> <br>> ------------------------------<br>> <br>> Message: 2<br>> Date: Wed, 9 Apr 2014 10:21:52 +0200<br>> From: Herbert Voss <Herbert.Voss@FU-Berlin.DE><br>> To: <pstricks@tug.org><br>> Subject: Re: [pstricks] arrayjob and multiple array elements in one<br>>   pstricks function does not worked as expected<br>> Message-ID: <53450320.1020504@FU-Berlin.DE><br>> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed<br>> <br>> Am 09.04.2014 09:00, schrieb Juergen Rose:<br>> <br>> > I justed wrote my first latex file with array job. I tried to plot a<br>> > series of curves with five different parameters (Rprobe, Rmax,<br>> > LineColor, LabelPos and LabelVal). I am not able to use the array<br>> > elements for LineColor and Rmax. E.g., f I try to use the line<br>> > \psline[linecolor=\LineColors(\iInd)](150,\cachedata)(160,\cachedata) ,<br>> > xelatex complains about:<br>> > ! Undefined control sequence.<br>> > \in@ #1#2->\begingroup \def \in@@<br>> >                                    ##1#1{}\toks@ \expandafter {\in@@<br>> > #2{}{}#1...<br>> > l.39     }<br>> ><br>> > The complete latex file is in the attachment. Any hint is deeply<br>> > appreciated.<br>> <br>> The expressions from arrayjob are not always expandable. Use always<br>> the cached value:<br>> <br>> \documentclass[]{article}<br>> <br>> \usepackage{pst-plot}<br>> \usepackage{arrayjob}<br>> \pagestyle{empty}<br>> <br>> \begin{document}<br>> <br>>    \newarray\Rprobe<br>>    \readarray{Rprobe}{0&5000&2160&640}<br>>    \newarray\RMax<br>>    \readarray{RMax}{0&200&200&130}<br>>    \newarray{\LineColors}<br>>    \readarray{LineColors}{red&green&magenta&blue}<br>>    \newarray{\LabelPos}<br>>    \readarray{LabelPos}{90&50&30&10}<br>>    \newarray{\LabelVal}<br>>    \readarray{LabelVal}{S_T^{VC}(r), r_p= 0 nm&S_T^{VC}(r), r_p= 0.3 <br>> nm&S_T^{VC}(r), r_p=3 nm&S_T^{VC}(r), r_p=30 nm}<br>>    \def\RatioFacZero{Pi 6 sqrt div 3 div }<br>>    \begin{pspicture}(-2.0,-3.0)(17,7)<br>>      \psset{xunit=0.06cm,yunit=0.1cm}<br>>      \psaxes[Dx=10,Dy=10]{->}(0,0)(-1.0,-1.0)(220,105)<br>>      \uput[-90](225,-0.5){$r[nm]$}<br>>      \uput[180](-0.1,95){$S_{total}[\mu m^2]$}<br>>      \psset{plotpoints=200}<br>>      \multido{\iInd=2+1}{3}{%<br>>        \checkLineColors(\iInd)\psset{linecolor=\cachedata}%<br>>        \checkRMax(\iInd)\edef\POINTS{\cachedata}%<br>>        \checkRprobe(\iInd)%<br>>        \psparametricplot{2}{\POINTS}{<br>>                 t \RatioFacZero t 3 exp mul 2 div 0.225 t 2 0.5 exp div add<br>>                 2 exp div 1 2 t 2 exp div 2 0.5 exp t div 3 mul sub 2 <br>> add 3 mul<br>>                 t mul t \cachedata\space add div sub mul }<br>>        \checkLabelPos(\iInd)%<br>>        \psline(150,\cachedata)(160,\cachedata)<br>>        \uput[r](160,\cachedata) {$\LabelVal(\iInd)$}%<br>>      }<br>>    \end{pspicture}<br>> <br>> \end{document}<br>> <br>> And, by the way, using an algebraic expression instead of the postfix<br>> notation makes it easier.<br>> <br>> <br>> Herbert<br>> <br>> <br>> <br>> <br>> ------------------------------<br>> <br>> Subject: Digest Footer<br>> <br>> _______________________________________________<br>> PSTricks mailing list<br>> PSTricks@tug.org<br>> http://tug.org/mailman/listinfo/pstricks<br>> <br>> <br>> ------------------------------<br>> <br>> End of PSTricks Digest, Vol 135, Issue 4<br>> ****************************************<br></div>                                    </div></body>
</html>