ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Orphans and widows in Natural Tables
@ 2016-06-09 20:21 Pavneet Arora
  2016-06-09 20:41 ` Aditya Mahajan
  2016-06-09 22:50 ` Wolfgang Schuster
  0 siblings, 2 replies; 3+ messages in thread
From: Pavneet Arora @ 2016-06-09 20:21 UTC (permalink / raw)
  To: ConTeXt Mailing list

Related to my previous enquiry, I have the same issue with another part 
of the report card that uses Natural Tables.

I'd like to keep two rows together as a unit, and not have the table 
split between them.  Is that possible, and how?

advTHANKSance


>>>> MWE

\definefontfamily[mainface][rm][Latin Modern Roman]
\definefontfamily[mainface][ss][Latin Modern Sans]
\definefontfamily[mainface][tt][Latin Modern Typewriter]
\definefontfamily[mainface][mm][Latin Modern Math]
%\definefontfamily[mainface][rm][Andada][sc=file:AndadaSC-Regular.otf]
%\definefontfamily[mainface][ss][Fira Sans]
%\definefontfamily[mainface][tt][Inconsolata]
%\definefontfamily[mainface][mm][Latin Modern Math]

\setupbodyfont[mainface,9pt]

\starttext
    \setupTABLE[frame=off, split=repeat]
    \setupTABLE[r][last][bottomframe=on]
    \setupTABLE[c][1][width=3.0in]
    \setupTABLE[c][2][width=0.5in, align=flushright]
    \setupTABLE[c][3][width=0.5in, align=flushright]
    \setupTABLE[c][4][width=2.5in]
    \bTABLE
    \bTABLEhead
    \bTR[topframe=on, bottomframe=on] 
        \bTH {\bf Unit Description} \eTH
        \bTH {\bf Weight} \eTH
        \bTH {\bf Mark} \eTH
        \bTH \eTH
    \eTR
    \eTABLEhead
    \bTABLEbody
    \dorecurse{10}{
    %% Need to keep Unit description row and comment row together.
    \bTR[topframe=on] 
        \bTD {\sc Unit } \eTD
        \bTD 10 \eTD
        \bTD 99 \eTD
        \bTD \eTD
    \eTR
    \bTR
        \bTD[nc=4] \input lorem.tex \eTD
    \eTR
    }
    \eTABLEbody
    \eTABLE
\stoptext

<<<< MWE

-- 
Pavneet Arora           m: +1 (647) 406-6843
Waroc Informatik        t: +1 (416) 937-9276
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Orphans and widows in Natural Tables
  2016-06-09 20:21 Orphans and widows in Natural Tables Pavneet Arora
@ 2016-06-09 20:41 ` Aditya Mahajan
  2016-06-09 22:50 ` Wolfgang Schuster
  1 sibling, 0 replies; 3+ messages in thread
From: Aditya Mahajan @ 2016-06-09 20:41 UTC (permalink / raw)
  To: Pavneet Arora, mailing list for ConTeXt users

On Thu, 9 Jun 2016, Pavneet Arora wrote:

> Related to my previous enquiry, I have the same issue with another part 
> of the report card that uses Natural Tables.
>
> I'd like to keep two rows together as a unit, and not have the table 
> split between them.  Is that possible, and how?
>
> advTHANKSance
>
>
>>>>> MWE
>
> \definefontfamily[mainface][rm][Latin Modern Roman]
> \definefontfamily[mainface][ss][Latin Modern Sans]
> \definefontfamily[mainface][tt][Latin Modern Typewriter]
> \definefontfamily[mainface][mm][Latin Modern Math]
> %\definefontfamily[mainface][rm][Andada][sc=file:AndadaSC-Regular.otf]
> %\definefontfamily[mainface][ss][Fira Sans]
> %\definefontfamily[mainface][tt][Inconsolata]
> %\definefontfamily[mainface][mm][Latin Modern Math]
>
> \setupbodyfont[mainface,9pt]
>
> \starttext
>    \setupTABLE[frame=off, split=repeat]
>    \setupTABLE[r][last][bottomframe=on]
>    \setupTABLE[c][1][width=3.0in]
>    \setupTABLE[c][2][width=0.5in, align=flushright]
>    \setupTABLE[c][3][width=0.5in, align=flushright]
>    \setupTABLE[c][4][width=2.5in]
>    \bTABLE
>    \bTABLEhead
>    \bTR[topframe=on, bottomframe=on]
>        \bTH {\bf Unit Description} \eTH
>        \bTH {\bf Weight} \eTH
>        \bTH {\bf Mark} \eTH
>        \bTH \eTH
>    \eTR
>    \eTABLEhead
>    \bTABLEbody
>    \dorecurse{10}{
>    %% Need to keep Unit description row and comment row together.
>    \bTR[topframe=on]
>        \bTD {\sc Unit } \eTD
>        \bTD 10 \eTD
>        \bTD 99 \eTD
>        \bTD \eTD
>    \eTR

(Untested): Add

\noindent{\blank[samepage]}

>    \bTR
>        \bTD[nc=4] \input lorem.tex \eTD
>    \eTR
>    }
>    \eTABLEbody
>    \eTABLE
> \stoptext

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

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Orphans and widows in Natural Tables
  2016-06-09 20:21 Orphans and widows in Natural Tables Pavneet Arora
  2016-06-09 20:41 ` Aditya Mahajan
@ 2016-06-09 22:50 ` Wolfgang Schuster
  1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Schuster @ 2016-06-09 22:50 UTC (permalink / raw)
  To: Pavneet Arora, mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1578 bytes --]

> Pavneet Arora <mailto:pavneet_arora@waroc.com>
> 9. Juni 2016 um 22:21
> Related to my previous enquiry, I have the same issue with another part
> of the report card that uses Natural Tables.
>
> I'd like to keep two rows together as a unit, and not have the table
> split between them. Is that possible, and how?
>
> advTHANKSance
>
>
>
> \definefontfamily[mainface][rm][Latin Modern Roman]
> \definefontfamily[mainface][ss][Latin Modern Sans]
> \definefontfamily[mainface][tt][Latin Modern Typewriter]
> \definefontfamily[mainface][mm][Latin Modern Math]
> %\definefontfamily[mainface][rm][Andada][sc=file:AndadaSC-Regular.otf]
> %\definefontfamily[mainface][ss][Fira Sans]
> %\definefontfamily[mainface][tt][Inconsolata]
> %\definefontfamily[mainface][mm][Latin Modern Math]
>
> \setupbodyfont[mainface,9pt]
>
> \starttext
> \setupTABLE[frame=off, split=repeat]
> \setupTABLE[r][last][bottomframe=on]
> \setupTABLE[c][1][width=3.0in]
> \setupTABLE[c][2][width=0.5in, align=flushright]
> \setupTABLE[c][3][width=0.5in, align=flushright]
> \setupTABLE[c][4][width=2.5in]
> \bTABLE
> \bTABLEhead
> \bTR[topframe=on, bottomframe=on]
> \bTH {\bf Unit Description} \eTH
> \bTH {\bf Weight} \eTH
> \bTH {\bf Mark} \eTH
> \bTH \eTH
> \eTR
> \eTABLEhead
> \bTABLEbody
> \dorecurse{10}{
> %% Need to keep Unit description row and comment row together.
> \bTR[topframe=on]
> \bTD {\sc Unit } \eTD
> \bTD 10 \eTD
> \bTD 99 \eTD
> \bTD \eTD
> \eTR
> \bTR
     \bTR[samepage=before]
> \bTD[nc=4] \input lorem.tex \eTD
> \eTR
> }
> \eTABLEbody
> \eTABLE
> \stoptext
>
> <<<< MWE
Wolfgang

[-- Attachment #1.2: Type: text/html, Size: 3194 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

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

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-09 22:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-09 20:21 Orphans and widows in Natural Tables Pavneet Arora
2016-06-09 20:41 ` Aditya Mahajan
2016-06-09 22:50 ` Wolfgang Schuster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).