Just to make this clearer and to make sure I'm doing best-practice, this is what I did.
Under
Site Manager > Document Types > Edit Root > Queries Tab, I added the following:
SELECT ##TOPN## * FROM BizFormTable WHERE ##WHERE## ORDER BY ##ORDERBY##;
Also under the
Transformations Tab, I added the following:
<tr>
<td><a href=/PrintPage?id=<%# Eval("ID") %> target=_blank>Print</a></td>
<td><%# Eval("ID") %></td>
<td><%# Eval("Title") %></td>
</tr>
Then I added a WebPart under
Listing and viewers > Repeater with custom query (queryrepeater) and specified the above query and transformation.
Under
HTML Envelope, I also added this HTML:
Content before: <table width=100%><tbody>
Content after: </tbody></table>
I hope this helps out those who like it step-by-step.