<br><br><div class="gmail_quote">On Tue, Jun 28, 2011 at 5:42 PM, luigi scarso <span dir="ltr"><<a href="mailto:luigi.scarso@gmail.com">luigi.scarso@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><div></div><div class="h5"><br><br><div class="gmail_quote">On Tue, Jun 28, 2011 at 5:32 PM, Patrick Gundlach <span dir="ltr"><<a href="mailto:patrick@gundla.ch" target="_blank">patrick@gundla.ch</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><br>
<br>
> Otherwise, don't add those nodes to the MVL, but to a made-up box, which you then ship out.<br>
<br>
</div>I am thinking about this right now. I use node.write only twice, so that is not much to do.<br>
<br>
I'll report back after my experiments.<br>
<br>
But I am still interested in a solution without an intermediate box.<br>
<font color="#888888"><br>
Patrick<br>
<br>
<br>
</font></blockquote></div><br></div></div>\shipout writes a box.<br>Hence or you shipout your box, or you add the material into the MVL and pass the control to luatex<br>that will shipout it with the current otr (\plainoutput in my case, luatex from minimals) <br>

<br clear="all"><br>-- <br><font color="#888888">luigi<br><br>
</font></blockquote></div><br>I mean<br><br>%% Box solution<br>\tracingall<br>\directlua{dofile("mknodes.lua")}<br>\directlua{dofile("mknodes.lua")}<br>\bye<br><br>-- mknodes.lua<br>local tenpt = 10 * 2^16<br>
<br>local r = node.new("rule")<br>r.width = tenpt<br>r.height = tenpt<br>r.depth = tenpt<br><br>local v = node.vpack(r)<br>tex.setbox(8192, v)<br>tex.shipout(8192)<br><br>%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%<br>
<br>%%% MVL solution<br>\tracingall<br>
\directlua{dofile("mknodes.lua")}<br>
\bye<br>
<br>
-- mknodes.lua<br>
local tenpt = 10 * 2^16<br><br>local r = node.new("rule")<br>r.width = tenpt<br>r.height = tenpt<br>r.depth = tenpt<br><br>local v = node.vpack(r)<br>node.write(v)<br><br><br><br><br clear="all"><br>-- <br>luigi<br>
<br>