14 Mar
2015
14 Mar
'15
10:20 a.m.
Am 13.03.2015 um 21:32 schrieb Emmanuel Asante
: Hello All,
I am trying to centre a multi-line verbatim text horizontally on the page but I cannot figure out how to do that. With the code below how can I centre the whole block horizontally on the page?
\setuptyping[TEX]
\startTEX RSpec.describe Post, :type => :model do end \stopTEX
You can add a framedtext environment around the verbatim text and use “location=middle” to center it. \setuptyping [TEX] [before={\startframedtext[location=middle]}, after=\stopframedtext] \starttext \startTEX RSpec.describe Post, :type => :model do end \stopTEX \stoptext Wolfgang