I have two paragraphs of instructions and I need to indicate to readers that they have a choice of one or another. I am using this code, to put the data into different columns, with a line between:
\startcolumns[n=2, rule=on]
\startlines
This is some instructions.
\stoplines
\column
\startlines
This is some other instructions.
\stoplines
\stopcolumns
This makes a document like this, with a nice divide line in the middle:
_______________________________
| |
| This is some : This is some |
| instructions. : other instru- |
| : ctions. |
| |
|_______________________________|
I'd like to add the text "or", beween the two columns, to make it more clear that readers have a choice. This breaks the divide line and appears exactly in the middle, centered vertically on the line, and horizontally centered as well, e.g.:
_______________________________
| |
| This is some : This is some |
| instructions. or other instr- |
| : uctions. |
| |
|_______________________________|
How can I add "or" text to the line dividing the two columns?
