blob: 63261aa3b8e648c671ffb550cc79108a243420cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
if not modules then modules = { } end modules ['back-pdf'] = {
version = 1.001,
comment = "companion to back-pdf.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local codeinjections = backends.pdf.codeinjections
local outputfilename
function codeinjections.getoutputfilename()
if not outputfilename then
outputfilename = file.addsuffix(tex.jobname,"pdf")
end
return outputfilename
end
backends.install("pdf")
|