Editing TeX without TeX

From LuaTeXWiki

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
 
== Use TeX's power without TeX macros ==
 
== Use TeX's power without TeX macros ==
  
With the Lua-part in LuaTeX you have access to most of TeX's capabilities for creating PDF documents. Most of the [http://www.luatex.org/svn/trunk/manual/luatexref-t.pdf LuaTeX reference manual] is about this topic.
+
With LuaTeX you have access to most of TeX's capabilities for creating PDF documents. Most of the [http://www.luatex.org/svn/trunk/manual/luatexref-t.pdf LuaTeX reference manual] is about this topic.  
 
 
[[Writing_Lua_in_TeX|Remember]] that you can jump into Lua mode from TeX with <tt>\directlua{...Lua code...}</tt>. For example this plain TeX document prints the first digits of the value of pi: <tt>$\pi = \directlua{ tex.print(math.pi)}$ \bye</tt>. You can get the result PDF by running <tt>luatex testfile.tex</tt>.
 
  
 
The underlying idea is to create TeX's internal data structure as TeX would do by transforming macros and primitives into something called nodes. These nodes are then transformed into instructions for the PDF file (PDF objects). So the following pages deal with node creation and the structures.  
 
The underlying idea is to create TeX's internal data structure as TeX would do by transforming macros and primitives into something called nodes. These nodes are then transformed into instructions for the PDF file (PDF objects). So the following pages deal with node creation and the structures.  
Line 80: Line 78:
 
In a future version of LuaTeX you will be able to run the Lua interpreter without the stub TeX file above.
 
In a future version of LuaTeX you will be able to run the Lua interpreter without the stub TeX file above.
  
== A first example ==
+
== A first (but simple) example ==
  
 
The example document given below creates two pages by using Lua code alone. You will learn how to access TeX's boxes and counters from the Lua side, shipout a page into the PDF file, create horizontal and vertical boxes (hbox and vbox), create new nodes and manipulate the nodes links structure. The example covers the following node types: rule, whatsit, vlist, hlist and action.
 
The example document given below creates two pages by using Lua code alone. You will learn how to access TeX's boxes and counters from the Lua side, shipout a page into the PDF file, create horizontal and vertical boxes (hbox and vbox), create new nodes and manipulate the nodes links structure. The example covers the following node types: rule, whatsit, vlist, hlist and action.
Line 86: Line 84:
 
In the example code we use black squares as the contents of the pages and not normal text, because character handling takes more code and will be covered later on.
 
In the example code we use black squares as the contents of the pages and not normal text, because character handling takes more code and will be covered later on.
  
Save the following file into <tt>myprogram.lua</tt> and use the TeX stub from above (or get the source [https://gist.github.com/pgundlach/1062041 here]).
+
Save the following file into <tt>myprogram.lua</tt> and use the TeX stub from above.
 
<pre>
 
<pre>
 
do
 
do
 
   -- this will hold the items that go onto the page
 
   -- this will hold the items that go onto the page
 
   local pagelist
 
   local pagelist
+
  -- local counter = 1
 +
 
 
   -- Call tex.shipout() with the contents of the pagelist
 
   -- Call tex.shipout() with the contents of the pagelist
 
   function shipout()
 
   function shipout()
Line 97: Line 96:
 
     local vbox,b = node.vpack(pagelist) -- we ignore the badness 'b'
 
     local vbox,b = node.vpack(pagelist) -- we ignore the badness 'b'
 
     tex.box[666] = vbox
 
     tex.box[666] = vbox
 +
 +
    -- require("viznodelist")
 +
    -- viznodelist.nodelist_visualize(vbox,string.format("head%d.gv",counter))
 +
 
     tex.shipout(666)
 
     tex.shipout(666)
 
 
     pagelist = nil
 
     pagelist = nil
 
      
 
      
Line 106: Line 108:
 
     -- display [1] [1], instead of [1] [2] for our two page document.
 
     -- display [1] [1], instead of [1] [2] for our two page document.
 
     tex.count[0] = tex.count[0] + 1
 
     tex.count[0] = tex.count[0] + 1
end
+
 
 +
    -- counter = counter + 1
 +
  end
  
 
   function add_to_page( list )
 
   function add_to_page( list )
Line 193: Line 197:
 
start_link.link_attr = "/C [0.9 1 0] /Border [0 0 2]"
 
start_link.link_attr = "/C [0.9 1 0] /Border [0 0 2]"
  
--start_link.action = node.new("action")
+
start_link.action = node.new("action")
--there has been an update of the luatex
 
start_link.action = node.new("whatsit","pdf_action")
 
 
start_link.action.action_type = 1
 
start_link.action.action_type = 1
 
start_link.action.action_id  = dest
 
start_link.action.action_id  = dest
Line 214: Line 216:
  
 
The idea is to create nodes, collect them in a list (here: pagelist) and use <tt>tex.shipout()</tt> to put the page into the PDF.
 
The idea is to create nodes, collect them in a list (here: pagelist) and use <tt>tex.shipout()</tt> to put the page into the PDF.
 
== And what about ''real'' content? ==
 
 
Black squares won't make anyone happy. So we need a typeset paragraph. For that we start with a single glyph and a glue first. A glyph node has this structure:
 
 
[[File:Singleglyphnode.png]]
 
 
whereas a glue is more complicated:
 
 
[[File:Simplegluenode.png]]
 
 
The glue item comes in pairs: a glue node and a glue_spec node. The information about the shrink/stretch values go into the glue_spec node. For example, the TeX glue <tt>2pt plus 1fill</tt> has a width of 2*2<sup>16</sup>, a stretch of 2<sup>16</sup> and a stretch_order of 3.
 
 
<pre>
 
local g = node.new("glyph")
 
g.font = font.current()
 
g.lang = tex.language
 
g.char = 86 -- V
 
 
local hbox = node.hpack(g)
 
local vbox = node.vpack(hbox)
 
 
node.write(vbox)
 
</pre>
 
 
We create a glyph, pack it into an hbox (horizontal box), pack that hbox into a vbox (a vertical box) and write this box to the main vertical list. The char number (86 in the example above) is based on an internal encoding, so we have to keep an eye on what character is on what position. Now we do this for two glyphs:
 
 
<pre>
 
local g1 = node.new("glyph")
 
g1.font = font.current()
 
g1.lang = tex.language
 
g1.char = 86
 
 
local g2 = node.new("glyph")
 
g2.font = font.current()
 
g2.lang = tex.language
 
g2.char = 97
 
 
g1.next = g2
 
g2.prev = g1
 
 
local hbox = node.hpack(g1)
 
local vbox = node.vpack(hbox)
 
 
node.write(vbox)
 
</pre>
 
 
Pretty much the same as above. The glyphs g1 and g2 are chained together by setting the next and prev pointer to each other. If they were not connected, only glyph g1 gets into the hbox.
 
 
If you take a close look at the PDF, you see that the two glyphs are too far away, a (negative) kern should be inserted. This can be done by inserting a kern-node manually or you can ask TeX to do that for you. The last lines of the example above should then read:
 
 
<pre>
 
local head,tail,success = node.kerning(g1)
 
local hbox = node.hpack(head)
 
local vbox = node.vpack(hbox)
 
 
node.write(vbox)
 
</pre>
 
 
With this approach you are able to put some glyphs into the PDF but you will run into problems when you want to create a whole paragraph. It is much easier to ask TeX to do the line breaking. The steps for paragraph creation are
 
 
# put glyph nodes and glue nodes in a list (= chain them together with the prev/next pointers)
 
# add trailing infinite penalty and parfillskip
 
# call lang.hyphenate(), node.kerning() and node.ligaturing() to prepare the list for the linebreaking job
 
# call tex.linebreak()
 
 
For the next task we want to create the following paragraph:
 
 
[[File:Sample_paragraph.png|600px]]
 
 
 
We start with the small TeX stub as above:
 
 
<pre>
 
\directlua{dofile("myprogram.lua")}
 
\end
 
</pre>
 
 
and myprogram.lua ([https://gist.github.com/1063228 download]) defines a function <tt>mknodes()</tt> that creates the list of nodes to be passed into the typesetter.
 
 
<pre>
 
function mknodes( text )
 
  local current_font = font.current()
 
  local font_parameters = font.getfont(current_font).parameters
 
  local n, head, last
 
  -- we should insert the paragraph indentation at the beginning
 
  head = node.new("glue")
 
  head.spec = node.new("glue_spec")
 
  head.spec.width = 20 * 2^16
 
  last = head
 
 
  for s in string.utfvalues( text ) do
 
    local char = unicode.utf8.char(s)
 
    if unicode.utf8.match(char,"^%s$") then
 
      -- its a space
 
      n = node.new("glue")
 
      n.spec = node.new("glue_spec")
 
      n.spec.width  = font_parameters.space
 
      n.spec.shrink  = font_parameters.space_shrink
 
      n.spec.stretch = font_parameters.space_stretch
 
    else -- a glyph
 
      n = node.new("glyph")
 
      n.font = current_font
 
      n.subtype = 1
 
      n.char = s
 
      n.lang = tex.language
 
      n.uchyph = 1
 
      n.left = tex.lefthyphenmin
 
      n.right = tex.righthyphenmin
 
    end
 
 
    last.next = n
 
    last = n
 
  end
 
 
 
  -- now add the final parts: a penalty and the parfillskip glue
 
  local penalty = node.new("penalty")
 
  penalty.penalty = 10000
 
 
  local parfillskip = node.new("glue")
 
  parfillskip.spec = node.new("glue_spec")
 
  parfillskip.spec.stretch = 2^16
 
  parfillskip.spec.stretch_order = 2
 
 
 
  last.next = penalty
 
  penalty.next = parfillskip
 
 
  -- just to create the prev pointers for tex.linebreak
 
  node.slide(head)
 
  return head
 
end
 
 
local txt = "A wonderful serenity has taken possession of my entire soul, ... like mine."
 
 
tex.baselineskip = node.new("glue_spec")
 
tex.baselineskip.width = 14 * 2^16
 
 
local head = mknodes(txt)
 
lang.hyphenate(head)
 
head = node.kerning(head)
 
head = node.ligaturing(head)
 
 
local vbox = tex.linebreak(head,{ hsize = tex.sp("3in")})
 
node.write(vbox)
 
</pre>
 
 
(You can safely skip this section if you are not interested in the details.)
 
 
What has happened in detail? We have created a list of glyph and glue nodes and fed those into the line breaking part of TeX which gave us the vbox back. This vbox contains horizontal lists glued together:
 
 
[[File:Paragraph_with_boxes.png|600px]]
 
 
The dashed rectangle (vbox) should fit tight to the inner hboxes. It has a small offset just for demonstration purpose.
 
 
To show you some of the nodes that TeX inserted for you, have a look at the following image:
 
 
[[File:Nodes_in_sample_paragraph.png]]
 
 
Here is an explanation of the nodes:
 
 
# This is the dashed line in the image above. A paragraph is always vertical
 
# The first line. It has a width of three inches, a height and depth of together 8.888 pt
 
# The 20pt paragraph indent. This is the first item in the first line (note that the pointer comes from the head item of the node #2
 
# The first letter in the first line
 
# The interword glue.
 
# The second letter in the first line
 
# The clubpenalty
 
# The baselineskip minus the height of the hbox "above" (8.888pt + 5.111pt is approx. 14pt. The rounding error is due to the display of only few significant digits.) Note that TeX is in vertical mode, as it is the third item in the vbox (#1).
 
# The hbox of the second line
 
# The first letter of the second line
 
# A kern between the m and the y of the first word (second line)
 
# The last letter shown here
 
 
There are many nodes created in the paragraph which are not shown here. A full view can be found in [[Media:Nodes_in_sample_paragraph_full.pdf|a separate PDF file]].
 
 
== Inserting images is easy ==
 
 
Now that you have survived the hard part of this tutorial, we get to something easier. Image inclusion. There are several ways to do this, and in my opinion this is the easiest. We again start with our plain (lua)TeX stub:
 
 
<pre>
 
\directlua{dofile("includeimage.lua")}
 
\end
 
</pre>
 
 
and includeimage.lua is this small lua chunk:
 
 
<pre>
 
local image_fixed = img.scan({filename = "oilpainting.jpg"})
 
 
local image    = img.copy(image_fixed)
 
local halfimage = img.copy(image_fixed)
 
 
halfimage.height = halfimage.height / 2
 
halfimage.width  = halfimage.width  / 2
 
 
node.write(img.node(image))
 
node.write(img.node(halfimage))
 
</pre>
 
 
You might be able to guess what happens here. We load the image [[Media:Oilpainting.jpg|oilpainting.jpg]] with <tt>img.scan</tt> but do not write it out to the PDF file yet. We create a copy of the image data so we can manipulate the size for example (another option would be to obtain a specific page of a PDF document or do some rotation). After that we write a reference to that image to the PDF file. In the case above, two references to the image (XObject) get written but the image is only written once. That is easy, right?
 
 
You can get an impression how the resulting document looks like:
 
 
[[File:Oilpaintingdocument.jpg]]
 
 
== Hyphenation ==
 
 
Every now and then you have to hyphenate your words in other languages. When you create the paragraph to be hyphenated (with <tt>lang.hyphenate()</tt>), you assemble it by creating glyph nodes which have a field lang (see above). This field accepts a number, the language id. So: how do we "create" a language? The first steps are simple, we start without TeX stub again:
 
 
<pre>
 
\directlua{dofile("hyphenation.lua")}
 
\end
 
</pre>
 
 
and the file hyphenation.lua is:
 
<pre>
 
local path = kpse.find_file("hyph-de-1996.pat.txt")
 
local l = lang.new()
 
 
local hyph_file = io.open(path)
 
lang.patterns(l,hyph_file:read("*all"))
 
hyph_file:close()
 
</pre>
 
 
Now the function <tt>lang.id(l)</tt> returns the language id of the language <tt>l</tt>, which we can use in the glyph nodes. A peculiarity of TeX prevents that we can start with that right away. All characters that are in the paragraph get lowercased before hyphenation rules apply. So how will a word like "Œuvre" be converted to lowercase? TeX has an internal table called ''lccode'' where it looks up a character and the output is its lowercase variant. So the lccode of Œ would be œ, but as TeX stores numbers, the lccode of 338 is 339. But only lccodes of the letters A-Z and a-z are set, so we need to set the codes for all other characters that appear in a text. In TeX you would write:
 
 
<pre>
 
\lccode`\Œ=`\œ
 
\lccode`\œ=`\œ
 
</pre>
 
or
 
 
<pre>
 
\lccode338=339
 
\lccode339=339
 
</pre>
 
 
You see that you need to set the lccode of the lowercase characters as well. In Lua you do something similar:
 
 
<pre>
 
tex.lccode[unicode.utf8.byte("Œ")] = [unicode.utf8.byte("œ")]
 
tex.lccode[unicode.utf8.byte("œ")] = [unicode.utf8.byte("œ")]
 
</pre>
 
 
or shorter:
 
 
<pre>
 
tex.lccode[338] = [339]
 
tex.lccode[339] = [339]
 
</pre>
 
 
Once you have set all the necessary lccodes (remember you don't need to do this with a to z and A to Z), you can expect the hyphenation to work.
 

Please note that all contributions to LuaTeXWiki are considered to be released under the GNU Free Documentation License 1.3 (see LuaTeXWiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)