Previous Chapter | Next Chapter | Up | Next Section | Contents

Showing row number and row data in previous and next batch hyperlinks.


The variables beginning previous-sequence-start- , previous-sequence-end- , next-sequence-start- and next-sequence-end- and ending in index , number , roman , Roman , letter , Letter , and var-xxx , where xxx is a row attribute (or key) name, can be used to label which rows begin and end previous and next batches. This is illustrated in figures See Using batch-processing variables to number previous and next batch rows using Roman and Arabic numerals. and See Using batch-processing variables to number previous-batch rows using letters and next-batch starting and ending words., which use various batch insertion variables to label previous and next batches.

Using batch-processing variables to number previous and next batch rows using Roman and Arabic numerals.

<!--#in w36 previous size=5 start=qs-->
(<!--#var previous-sequence-start-roman--> -
<!--#var previous-sequence-end-roman-->)
<!--#/in-->

<table border><tr><th>WORD</th></tr>
<!--#in w36 size=5 start=qs-->
<tr><td><!--#var WORD--></td></tr>
<!--#/in-->
</table>

<!--#in w36 next size=5 start=qs-->
(<!--#var next-sequence-start-number--> -
<!--#var next-sequence-end-number-->)
<!--#/in-->

 

Using batch-processing variables to number previous-batch rows using letters and next-batch starting and ending words.

<!--#in w36 previous size=5 start=qs-->
(<!--#var previous-sequence-start-letter--> -
<!--#var previous-sequence-end-letter-->)
<!--#/in-->

<table border><tr><th>WORD</th></tr>
<!--#in w36 size=5 start=qs-->
<tr><td><!--#var WORD--></td></tr>
<!--#/in-->
</table>

<!--#in w36 next size=5 start=qs-->
(<!--#var next-sequence-start-var-WORD--> -
<!--#var next-sequence-end-var-WORD-->)
<!--#/in-->

 

Previous Chapter | Next Chapter | Up | Next Section | Contents