Close this window

Using the <entry> tag

Description The entry tag identifies an entry in a row.
Example
This CNXML:
<table frame="all" id="meyer_briggs">
  <tgroup cols="2" align="center">
    <colspec colname="col1" colnum="1" />
    <colspec colname="col2" colnum="2" />
    <thead>
      <row>
	<entry namest="col1" nameend="col2">
	  Dichotomies
	</entry>
      </row>
    </thead>
    <tbody valign="middle">
      <row>
	<entry>Extroverted</entry>
	<entry>Introverted</entry>
      </row>
      <row>
	<entry>Sensing</entry>
	<entry>iNtution</entry>
      </row>
      <row>
	<entry>Thinking</entry>
	<entry>Feeling</entry>
      </row>
      <row>
	<entry>Judging</entry>
	<entry>Perceiving</entry>
      </row>
    </tbody>
  </tgroup>
</table>
	
Results in this display:
Dichotomies
Extroversion Introversion
Sensing iNtution
Thinking Feeling
Judging Perceiving
Attributes (what's this?)
Children (what's this?)media, emphasis, code, term, cite, cnxn, link, foreign, quote, Unicode text
Parents (what's this?)row
Close this window