TablesΒΆ

Tags to insert and format tables

@table{...}

Insert a table

contents

A data tag and, optionally, a caption tag.

attributes

id=x

The identifier for the table caption

class=x

The formatting class for the table

examples
@table{
   @csv{
     First Name, Last Name
     John, Smith
     Betty, Sue
     Derek, Johnson
   }
 }

The following table includes a csv file and a caption title.

@mtable{
   @caption{Populations by age group for tennis players}
   @csv{data/populations.csv}
 }
@margintable{...}

Insert a table in the margin

contents

A data tag and, optionally, a caption tag.

attributes

id=x

The identifier for the table caption

class=x

The formatting class for the table

examples
@margintable{
   @caption{Populations by age group for tennis players}
   @csv{data/populations.csv}
 }
@fulltable{...}

Insert a table that spans the whole page

contents

A data tag and, optionally, a caption tag.

attributes

id=x

The identifier for the table caption

class=x

The formatting class for the table

examples

The following table includes a csv file and a caption title.

@fullable{
   @caption{Populations by age group for tennis players}
   @csv{data/populations.csv}
 }