• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

sile-typesetter / sile / 9409557472

07 Jun 2024 12:09AM UTC coverage: 69.448% (-4.5%) from 73.988%
9409557472

push

github

alerque
fix(build): Distribute vendored compat-5.3.c source file

12025 of 17315 relevant lines covered (69.45%)

6023.46 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/packages/cropmarks/init.lua
1
local base = require("packages.base")
×
2

3
local package = pl.class(base)
×
4
package._name = "cropmarks"
×
5

6
local outcounter = 1
×
7

8
local function outputMarks ()
9
   local page = SILE.getFrame("page")
×
10
   -- Length of crop mark bars
11
   local cropsz = 20
×
12
   -- Ensure the crop marks stay outside the bleed area
13
   local offset = math.max(10, SILE.documentState.bleed / 2)
×
14

15
   SILE.outputter:drawRule(page:left() - offset, page:top(), -cropsz, 0.5)
×
16
   SILE.outputter:drawRule(page:left(), page:top() - offset, 0.5, -cropsz)
×
17
   SILE.outputter:drawRule(page:right() + offset, page:top(), cropsz, 0.5)
×
18
   SILE.outputter:drawRule(page:right(), page:top() - offset, 0.5, -cropsz)
×
19
   SILE.outputter:drawRule(page:left() - offset, page:bottom(), -cropsz, 0.5)
×
20
   SILE.outputter:drawRule(page:left(), page:bottom() + offset, 0.5, cropsz)
×
21
   SILE.outputter:drawRule(page:right() + offset, page:bottom(), cropsz, 0.5)
×
22
   SILE.outputter:drawRule(page:right(), page:bottom() + offset, 0.5, cropsz)
×
23

24
   local hbox, hlist = SILE.typesetter:makeHbox(function ()
×
25
      SILE.settings:temporarily(function ()
×
26
         SILE.call("noindent")
×
27
         SILE.call("font", { size = "6pt" })
×
28
         if SILE.Commands["crop:header"] then
×
29
            -- Deprecation shim:
30
            -- If user redefined this command, still use it with a warning...
31
            SU.deprecated("crop:header", "cropmarks:header", "0.15.0", "0.16.0")
×
32
            SILE.call("crop:header")
×
33
         else
34
            SILE.call("cropmarks:header")
×
35
         end
36
      end)
37
   end)
38
   if #hlist > 0 then
×
39
      SU.error("Migrating content is forbidden in crop header")
×
40
   end
41

42
   SILE.typesetter.frame.state.cursorX = page:left() + offset
×
43
   SILE.typesetter.frame.state.cursorY = page:top() - offset - 4
×
44
   outcounter = outcounter + 1
×
45

46
   if hbox then
×
47
      for i = 1, #hbox.value do
×
48
         hbox.value[i]:outputYourself(SILE.typesetter, { ratio = 1 })
×
49
      end
50
   end
51
end
52

53
function package:_init ()
×
54
   base._init(self)
×
55
   self:loadPackage("date")
×
56
end
57

58
function package:registerCommands ()
×
59
   self:registerCommand("cropmarks:header", function (_, _)
×
60
      local info = SILE.input.filenames[1]
×
61
         .. " - "
×
62
         .. self.class.packages.date:date({ format = "%x %X" })
×
63
         .. " - "
×
64
         .. outcounter
×
65
      SILE.typesetter:typeset(info)
×
66
   end)
67

68
   self:registerCommand("cropmarks:setup", function (_, _)
×
69
      self.class:registerHook("endpage", outputMarks)
×
70
   end)
71

72
   self:registerCommand("crop:setup", function (_, _)
×
73
      SU.deprecated("crop:setup", "cropmarks:setup", "0.15.10", "0.17.0")
×
74
      SILE.call("cropmarks:setup")
×
75
   end)
76
end
77

78
package.documentation = [[
79
\begin{document}
80
When preparing a document for printing, you may be asked by the printer add crop marks.
81
This means that you need to output the document on a slightly larger page size than your target paper and add crop marks to show where the paper sheet should be trimmed down to the correct size.
82

83
Actual paper size, true page content area and bleed/trim area can all be set via class options.
84

85
This package provides the \autodoc:command{\cropmarks:setup} command which should be run early in your document file.
86
It places crop marks around the true page content.
87
The crop marks are guaranteed to stay outside the bleed/trim area, when defined.
88
It also adds a header at the top of the page with the filename, date and output sheet number.
89
You can customize this header by redefining \autodoc:command{\cropmarks:header}.
90
\end{document}
91
]]
×
92

93
return package
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc