2017

Table Of Contents
USING QUARKXPRESS SERVER
144 | A Guide to QuarkXPress Server 2017
<ROW ROWCOUNT=”2” ROWHEIGHT=”68.625”>
...
</ROW>
<
FRAME .../>
<GEOMETRY LAYER=”Default” PAGE=”1” SHAPE=”SH_RECT”>
...
</GEOMETRY>
<
COLSPEC>
...
</COLSPEC>
</TABLE>
</SPREAD>
Using inline tables
The Inline Tables feature makes it easy to create an anchored table. Rather than
having to specify every attribute of a table, you can simply specify the content for a
table as a series of
<TROW> and <ENTRY> elements in an <INLINETABLE> element,
like so:
<STORY>
<INLINETABLE>
<THEAD>
<TROW>
<ENTRY>Year</ENTRY>
<ENTRY>2012</ENTRY>
<ENTRY>2013</ENTRY>
<ENTRY>2014</ENTRY>
<ENTRY>2015</ENTRY>
</TROW>
</THEAD>
<TBODY>
<TROW>
<ENTRY>Revenue</ENTRY>
<ENTRY>000</ENTRY>
<ENTRY>100</ENTRY>
<ENTRY>200</ENTRY>
<ENTRY>300</ENTRY>
</TROW>
<TROW>
<ENTRY>Liabilities</ENTRY>
<ENTRY>000</ENTRY>
<ENTRY>100</ENTRY>
<ENTRY>200</ENTRY>
<ENTRY>300</ENTRY>
</TROW>
</TBODY>
</INLINETABLE>
...
</STORY>
The number of rows in such a table is determined by the number of <TROW>
elements. The number of columns is determined by the maximum number of
<ENTRY> elements in a <TROW>.
In the
<TBODY> element, each <TROW> contains one or more <ENTRY> elements. If
you don’t style the text in an <ENTRY> element, it uses the default styling, which
can be defined in a <TROWSTYLE> or <TCOLSTYLE> element (see below).
The
<THEAD> element lets you create a repeating header for the table. The
<TCONTINUED> element lets you create a “continued” row for the table. If you don’t
supply either of these elements, you must create the header row manually as a
<TROW> in the <TBODY>.