local base = require("packages.base")
local package = pl.class(base)
package._name = "raiselower"
local function raise (height, content)
SILE.typesetter:pushHbox({
outputYourself = function (_, typesetter, _)
typesetter.frame:advancePageDirection(-height)
end,
})
SILE.process(content)
SILE.typesetter:pushHbox({
outputYourself = function (_, typesetter, _)
typesetter.frame:advancePageDirection(height)
end,
})
end
function package:registerCommands ()
self:registerCommand("raise", function (options, content)
local height = SU.cast("measurement", options.height)
raise(height:absolute(), content)
end, "Raises the contents of the command by the amount specified in the <height> option")
self:registerCommand("lower", function (options, content)
local height = SU.cast("measurement", options.height)
raise(-height:absolute(), content)
end, "Lowers the contents of the command by the amount specified in the <height> option")
end
package.documentation = [[
\begin{document}
If you don’t want your images, rules, or text to be placed along the baseline, you can use the \autodoc:package{raiselower} package to move them up and down.
It provides two simple commands, \autodoc:command{\raise} and \autodoc:command{\lower}, which both take a \autodoc:parameter{height=<dimension>} parameter.
They will respectively raise or lower their argument by the given height.
The raised or lowered content will not alter the height or depth of the line.
Here is some text raised by \raise[height=3pt]{three points}; here is some text lowered by \lower[height=4pt]{four points}.
The previous paragraph was generated by:
\begin[type=autodoc:codeblock]{raw}
Here is some text raised by \raise[height=3pt]{three points}; here is some text lowered by \lower[height=4pt]{four points}.
\end{raw}
\end{document}
]]
return package