Hello everyone,

I am trying to create a study script in ConTeXt where each topic fits onto a folded A4 sheet in landscape orientation, so that when folded it becomes an A5 card.

I would like to layout the (double-sided) card in its opened form (A4 landscape), but think of it as having four pages (A5). In this layout, I would like the text to flow across my four pages in a flexible way:
- start on the left half of the front page,
- then continue on the left half of the back page,
- continue on the right half of the back page,
- and finally continue on the right half of the front page.

If working in a page layout software I would simply link four text frames in this order. Now, working in ConTeXt, I thought there could be something like threaded columns... so, I found the manual on *Columns* and played around, think that somehow \definecolumnsetarea could be useful. Alas, I couldn't even manage to make the examples look correct. And I'm failing to understand most of the parameters, as they don't seem to do what they are supposed to do (according to information found online or in the manual):

Is ConTeXt suitable for this kind of workflow at all? And if so, what is the recommended mechanism to link such custom areas and have text flow across them? Below is a first minimal MWE... Of course, this is static and does not yet provide the automatic text flow I am looking for:

---

\showgrid
\setuppapersize[A4,landscape]
\setuplayout[location=middle, marking=off]

% columnset with two comumns (I'm guessing this is per page?)
\definecolumnset[card][n=2]
\setupcolumnset[card][distance=1.5\bodyfontsize]

% trying to define a column set area
\definecolumnsetarea
  [frontleft] [both]   % what is ``both'' supposed to do?
  [
   x=1,
   y=0,
   nx=1,
   ny=10,   % try 10 lines for a start
  ]

\setupcolumnsetareatext [frontleft] [both]   % this doesn't seem to work at all!? Is ``both'' necessary? What should it do?
    [\dorecurse{1}{\input knuth\par}]

% \definetextflow [myflow]   % Am I supposed to define and use a textflow?

\starttext
\startcolumnset[card]
  \dorecurse{8}{\input knuth\par}
\stopcolumnset
\stoptext

---

Could anyone point me to a proper approach or more information about this kind of layout with linked text areas in ConTeXt (LMTX)?

Thanks a lot in advance!

Best regards,
Marcus

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / 
https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki     : https://wiki.contextgarden.net
___________________________________________________________________________________

Reply via email to