1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
|
--[[
lua-widow-control
https://github.com/gucci-on-fleek/lua-widow-control
SPDX-License-Identifier: MPL-2.0+
SPDX-FileCopyrightText: 2022 Max Chernoff
]]
lwc = lwc or {}
lwc.name = "lua-widow-control"
lwc.nobreak_behaviour = "keep"
local write_nl = texio.write_nl
local string_rep = string.rep
local function debug_print(title, text)
if not lwc.debug then return end
local filler = 15 - #title
if text then
write_nl("log", "LWC (" .. title .. string_rep(" ", filler) .. "): " .. text)
else
write_nl("log", "LWC: " .. string_rep(" ", 18) .. title)
end
end
--[[
\lwc/ is intended to be format-agonistic. It only runs on Lua\TeX{},
but there are still some slight differences between formats. Here, we
detect the format name then set some flags for later processing.
]]
local format = tex.formatname
local context, latex, plain, optex, lmtx
if format:find('cont') then -- cont-en, cont-fr, cont-nl, ...
context = true
if status.luatex_engine == "luametatex" then
lmtx = true
end
elseif format:find('latex') then -- lualatex, lualatex-dev, ...
latex = true
elseif format == 'luatex' then -- Plain
plain = true
elseif format == 'optex' then -- OpTeX
optex = true
end
--[[
Save some local copies of the node library to reduce table lookups.
This is probably a useless micro-optimization, but it can't hurt.
]]
local last = node.slide
local copy = node.copy_list
local par_id = node.id("par") or node.id("local_par")
local glue_id = node.id("glue")
local glyph_id = node.id("glyph")
local penalty_id = node.id("penalty")
local hlist_id = node.id("hlist")
local traverse = node.traverse
local set_attribute = node.set_attribute or node.setattribute
local find_attribute = node.find_attribute or node.findattribute
local flush_list = node.flush_list or node.flushlist
local free = node.free
local min_col_width = tex.sp("250pt")
--[[
Package/module initialization
]]
local warning,
info,
attribute,
contrib_head,
stretch_order,
pagenum,
emergencystretch,
max_cost
if lmtx then
debug_print("LMTX")
contrib_head = 'contributehead'
stretch_order = "stretchorder"
else
contrib_head = 'contrib_head'
stretch_order = "stretch_order"
end
if context then
debug_print("ConTeXt")
warning = logs.reporter("module", lwc.name)
info = logs.reporter("module", lwc.name)
attribute = attributes.public(lwc.name)
pagenum = function() return tex.count["realpageno"] end
emergencystretch = "lwc_emergency_stretch"
max_cost = "lwc_max_cost"
elseif plain or latex or optex then
pagenum = function() return tex.count[0] end
if tex.isdimen("g__lwc_emergencystretch_dim") then
emergencystretch = "g__lwc_emergencystretch_dim"
max_cost = "g__lwc_maxcost_int"
else
emergencystretch = "lwcemergencystretch"
max_cost = "lwcmaxcost"
end
if plain or latex then
debug_print("Plain/LaTeX")
luatexbase.provides_module {
name = lwc.name,
date = "2022/04/13", --%%slashdate
version = "2.0.5", --%%version
description = [[
This module provides a LuaTeX-based solution to prevent
widows and orphans from appearing in a document. It does
so by increasing or decreasing the lengths of previous
paragraphs.]],
}
warning = function(str) luatexbase.module_warning(lwc.name, str) end
info = function(str) luatexbase.module_info(lwc.name, str) end
attribute = luatexbase.new_attribute(lwc.name)
elseif optex then
debug_print("OpTeX")
warning = function(str) write_nl(lwc.name .. " Warning: " .. str) end
info = function(str) write_nl("log", lwc.name .. " Info: " .. str) end
attribute = alloc.new_attribute(lwc.name)
end
else -- uh oh
error [[Unsupported format.
Please use LaTeX, Plain TeX, ConTeXt or OpTeX.]]
end
local paragraphs = {} -- List to hold the alternate paragraph versions
local function get_location()
return "At " .. pagenum() .. "/" .. #paragraphs
end
--[[
Function definitions
]]
--- Create a table of functions to enable or disable a given callback
--- @param t table Parameters of the callback to create
--- callback: str = The \LuaTeX{} callback name
--- func: function = The function to call
--- name: str = The name/ID of the callback
--- category: str = The category for a \ConTeXt{} "Action"
--- position: str = The "position" for a \ConTeXt{} "Action"
--- lowlevel: bool = If we should use a lowlevel \LuaTeX{} callback instead of a
--- \ConTeXt{} "Action"
--- @return table t Enablers/Disablers for the callback
--- enable: function = Enable the callback
--- disable: function = Disable the callback
local function register_callback(t)
if plain or latex then -- Both use \LuaTeX{}Base for callbacks
return {
enable = function()
luatexbase.add_to_callback(t.callback, t.func, t.name)
end,
disable = function()
luatexbase.remove_from_callback(t.callback, t.name)
end,
}
elseif context and not t.lowlevel then
return {
-- Register the callback when the table is created,
-- but activate it when `enable()` is called.
enable = nodes.tasks.appendaction(t.category, t.position, "lwc." .. t.name)
or function()
nodes.tasks.enableaction(t.category, "lwc." .. t.name)
end,
disable = function()
nodes.tasks.disableaction(t.category, "lwc." .. t.name)
end,
}
elseif context and t.lowlevel then
--[[
Some of the callbacks in \ConTeXt{} have no associated "actions". Unlike
with \LuaTeX{}base, \ConTeXt{} leaves some \LuaTeX{} callbacks unregistered
and unfrozen. Because of this, we need to register some callbacks at the
engine level. This is fragile though, because a future \ConTeXt{} update
may decide to register one of these functions, in which case
\lwc/ will crash with a cryptic error message.
]]
return {
enable = function() callback.register(t.callback, t.func) end,
disable = function() callback.register(t.callback, nil) end,
}
elseif optex then
return {
enable = function()
callback.add_to_callback(t.callback, t.func, t.name)
end,
disable = function()
callback.remove_from_callback(t.callback, t.name)
end,
}
end
end
local function get_chars(head)
if not lwc.debug then return end
local chars = ""
for n in traverse(head) do
if n.id == glyph_id then
if n.char < 127 then
chars = chars .. string.char(n.char)
else
chars = chars .. "#"
end
elseif n.id == glue_id then
chars = chars .. " "
end
if #chars > 25 then
break
end
end
debug_print(get_location(), chars)
end
function lwc.paragraph_cost(demerits, lines)
return demerits / math.sqrt(lines)
end
--- Saves each paragraph, but lengthened by 1 line
function lwc.save_paragraphs(head)
-- Ensure that we were actually given a par (only under \ConTeXt{} for some reason)
if (head.id ~= par_id and context) or
status.output_active -- Don't run during the output routine
then
return head
end
-- Prevent the "underfull hbox" warnings when we store a potential paragraph
local renable_box_warnings
if (context or optex) or
#luatexbase.callback_descriptions("hpack_quality") == 0
then -- See #18 and michal-h21/linebreaker#3
renable_box_warnings = true
lwc.callbacks.disable_box_warnings.enable()
end
-- We need to return the unmodified head at the end, so we make a copy here
local new_head = copy(head)
-- Prevent ultra-short last lines (\TeX{}Book p. 104), except with narrow columns
local parfillskip = last(new_head)
if parfillskip.id == glue_id and tex.hsize > min_col_width then
parfillskip[stretch_order] = 0
parfillskip.stretch = 0.8 * tex.hsize -- Last line must be at least 20% long
end
-- Break the paragraph 1 line longer than natural
local long_node, long_info = tex.linebreak(new_head, {
looseness = 1,
emergencystretch = tex.getdimen(emergencystretch),
})
-- Break the natural paragraph so we know how long it was
local natural_node, natural_info = tex.linebreak(copy(head))
flush_list(natural_node)
if renable_box_warnings then
lwc.callbacks.disable_box_warnings.disable()
end
-- Offset the accumulated \\prevdepth
local prevdepth = node.new("glue")
prevdepth.width = natural_info.prevdepth - long_info.prevdepth
last(long_node).next = prevdepth
if long_info.prevgraf == natural_info.prevgraf + 1 then
table.insert(paragraphs, {
cost = lwc.paragraph_cost(long_info.demerits, long_info.prevgraf),
node = long_node
})
end
get_chars(head)
debug_print(get_location(), "nat lines " .. natural_info.prevgraf)
debug_print(
get_location(),
"nat cost " ..
lwc.paragraph_cost(natural_info.demerits, natural_info.prevgraf)
)
debug_print(get_location(), "long lines " .. long_info.prevgraf)
debug_print(
get_location(),
"long cost " ..
lwc.paragraph_cost(long_info.demerits, long_info.prevgraf)
)
-- \LuaMetaTeX{} crashes if we return `true`
return head
end
local last_paragraph = 0
--- Tags the beginning and the end of each paragraph as it is added to the page.
---
--- We add an attribute to the first and last node of each paragraph. The ID is
--- some arbitrary number for \lwc/, and the value corresponds to the
--- paragraphs index, which is negated for the end of the paragraph.
function lwc.mark_paragraphs(head)
if not status.output_active then
set_attribute(head, attribute, #paragraphs + (100 * pagenum()))
set_attribute(last(head), attribute, -1 * (#paragraphs + (100 * pagenum())))
last_paragraph = #paragraphs
end
return head
end
--- A "safe" version of the last/slide function.
---
--- Sometimes the node list can form a loop. Since there is no last element
--- of a looped linked-list, the `last()` function will never terminate. This
--- function provides a "safe" version of the `last()` function that will break
--- the loop at the end if the list is circular.
local function safe_last(head)
local ids = {}
local prev
while head.next do
local id = node.is_node(head) -- Returns the internal node id
if ids[id] then
warning [[Circular node list detected!
This should never happen. I'll try and
recover, but your output may be corrupted.
(Internal Error)]]
prev.next = nil
debug_print("safe_last", node.type(head.id) .. " " .. node.type(prev.id))
return prev
end
ids[id] = true
head.prev = prev
prev = head
head = head.next
end
return head
end
--- Remove the widows and orphans from the page, just after the output routine.
---
--- This function holds the "meat" of the module. It is called just after the
--- end of the output routine, before the page is shipped out. If the output
--- penalty indicates that the page was broken at a widow or an orphan, we
--- replace one paragraph with the same paragraph, but lengthened by one line.
--- Then, we can push the bottom line of the page to the next page.
function lwc.remove_widows(head)
local head_save = head -- Save the start of the `head` linked-list
local penalty = tex.outputpenalty - tex.interlinepenalty
local widowpenalty = tex.widowpenalty
local clubpenalty = tex.clubpenalty
local displaywidowpenalty = tex.displaywidowpenalty
local brokenpenalty = tex.brokenpenalty
debug_print("outputpenalty", tex.outputpenalty .. " " .. #paragraphs)
--[[
We only need to process pages that have orphans or widows. If `paragraphs`
is empty, then there is nothing that we can do.
The list of penalties is from:
https://tug.org/TUGboat/tb39-3/tb123mitt-widows-code.pdf#subsection.0.2.1
]]
if penalty ~= 0 and
penalty < 10000 and
(penalty == widowpenalty or
penalty == displaywidowpenalty or
penalty == clubpenalty or
penalty == clubpenalty + widowpenalty or
penalty == clubpenalty + displaywidowpenalty or
penalty == brokenpenalty or
penalty == brokenpenalty + widowpenalty or
penalty == brokenpenalty + displaywidowpenalty or
penalty == brokenpenalty + clubpenalty or
penalty == brokenpenalty + clubpenalty + widowpenalty or
penalty == brokenpenalty + clubpenalty + displaywidowpenalty) and
#paragraphs >= 1 then
else
paragraphs = {}
return head_save
end
info("Widow/orphan detected. Attempting to remove.")
--[[
Find the paragraph on the page with the least cost.
]]
local paragraph_index = 1
local best_cost = paragraphs[paragraph_index].cost
-- We find the current "best" replacement, then free the unused ones
for i, paragraph in pairs(paragraphs) do
if paragraph.cost < best_cost and
i ~= last_paragraph
then
-- Clear the old best paragraph
flush_list(paragraphs[paragraph_index].node)
paragraphs[paragraph_index].node = nil
-- Set the new best paragraph
paragraph_index, best_cost = i, paragraph.cost
elseif i > 1 then
-- Not sure why `i > 1` is required?
flush_list(paragraph.node)
paragraph.node = nil
end
end
debug_print(
"selected para",
pagenum() ..
"/" ..
paragraph_index ..
" (" ..
best_cost ..
")"
)
if best_cost > tex.getcount(max_cost) or
paragraph_index == last_paragraph
then
-- If the best replacement is too bad, we can't do anything
warning("Widow/Orphan NOT removed on page " .. pagenum())
paragraphs = {}
return head_save
end
local target_node = paragraphs[paragraph_index].node
-- Start of final paragraph
debug_print("remove_widows", "moving last line")
head = last(head_save).prev
local big_penalty_found, last_line, hlist_head
while head do
if head.id == glue_id then
-- Ignore any glue nodes
elseif head.id == penalty_id and head.penalty >= 10000 then
-- Infinite break penalty
big_penalty_found = true
elseif big_penalty_found and head.id == hlist_id then
-- Line before the penalty
if lwc.nobreak_behaviour == "keep" then
hlist_head = head
big_penalty_found = false
elseif lwc.nobreak_behaviour == "split" then
head = last(head_save)
break
elseif lwc.nobreak_behaviour == "warn" then
warning("Widow/Orphan NOT removed on page " .. pagenum())
paragraphs = {}
return head_save
end
else
-- Not found
if hlist_head then
head = hlist_head
else
head = last(head_save)
end
break
end
head = head.prev
end
last_line = copy(head)
last(last_line).next = copy(tex.lists[contrib_head])
head.prev.prev.next = nil
-- Move the last line to the next page
tex.lists[contrib_head] = last_line
local free_next_nodes = false
-- Loop through all of the nodes on the page with the lwc attribute
head = head_save
while head do
local value
value, head = find_attribute(head, attribute)
if not head then
break
end
debug_print("remove_widows", "found " .. value)
-- Insert the start of the replacement paragraph
if value == paragraph_index + (100 * pagenum()) then
debug_print("remove_widows", "replacement start")
safe_last(target_node) -- Remove any loops
head.prev.next = target_node
free_next_nodes = true
end
-- Insert the end of the replacement paragraph
if value == -1 * (paragraph_index + (100 * pagenum())) then
debug_print("remove_widows", "replacement end")
safe_last(target_node).next = head.next
break
end
if free_next_nodes then
head = free(head)
else
head = head.next
end
end
info(
"Widow/orphan successfully removed at paragraph "
.. paragraph_index
.. " on page "
.. pagenum()
.. "."
)
paragraphs = {} -- Clear paragraphs array at the end of the page
return head_save
end
-- Add all of the callbacks
lwc.callbacks = {
disable_box_warnings = register_callback({
callback = "hpack_quality",
func = function() end,
name = "disable_box_warnings",
lowlevel = true,
}),
remove_widows = register_callback({
callback = "pre_output_filter",
func = lwc.remove_widows,
name = "remove_widows",
lowlevel = true,
}),
save_paragraphs = register_callback({
callback = "pre_linebreak_filter",
func = lwc.save_paragraphs,
name = "save_paragraphs",
category = "processors",
position = "after",
}),
mark_paragraphs = register_callback({
callback = "post_linebreak_filter",
func = lwc.mark_paragraphs,
name = "mark_paragraphs",
category = "finalizers",
position = "after",
}),
}
local enabled = false
function lwc.enable_callbacks()
debug_print("callbacks", "enabling")
if not enabled then
lwc.callbacks.save_paragraphs.enable()
lwc.callbacks.mark_paragraphs.enable()
enabled = true
else
info("Already enabled")
end
end
function lwc.disable_callbacks()
debug_print("callbacks", "disabling")
if enabled then
lwc.callbacks.save_paragraphs.disable()
lwc.callbacks.mark_paragraphs.disable()
--[[
We do \emph{not} disable `remove_widows` callback, since we still want
to expand any of the previously-saved paragraphs if we hit an orphan
or a widow.
]]
enabled = false
else
info("Already disabled")
end
end
function lwc.if_lwc_enabled()
debug_print("iflwc")
if enabled then
tex.sprint("\\iftrue")
else
tex.sprint("\\iffalse")
end
end
--- Silence the luatexbase "Enabling/Removing <callback>" info messages
---
--- Every time that a paragraph is typeset, \lwc/ hooks in
--- and typesets the paragraph 1 line longer. Some of these longer paragraphs
--- will have pretty bad badness values, so TeX will issue an over/underfull
--- hbox warning. To block these warnings, we hook into the `hpack_quality`
--- callback and disable it so that no warning is generated.
---
--- However, each time that we enable/disable the null `hpack_quality` callback,
--- luatexbase puts an info message in the log. This completely fills the log file
--- with useless error messages, so we disable it here.
---
--- This uses the Lua `debug` library to internally modify the log upvalue in the
--- `add_to_callback` function. This is almost certainly a terrible idea, but I don't
--- know of a better way.
local function silence_luatexbase()
local nups = debug.getinfo(luatexbase.add_to_callback).nups
for x = 1, nups do
local name, func = debug.getupvalue(luatexbase.add_to_callback, x)
if name == "luatexbase_log" then
debug.setupvalue(
luatexbase.add_to_callback,
x,
function(text)
if text:match("^Inserting") or text:match("^Removing") then
return
else
func(text)
end
end
)
return
end
end
end
-- Activate \lwc/
if plain or latex then
silence_luatexbase()
end
lwc.callbacks.remove_widows.enable()
return lwc
|