summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/tabto-ltx
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-06-01 15:57:43 +0000
committerKarl Berry <karl@freefriends.org>2006-06-01 15:57:43 +0000
commit1c8c8267b4a08baa184fc3ac92fdaf39ba303465 (patch)
treead9d8f811bf2faf53242d960b81be6251906d926 /Master/texmf-dist/doc/latex/tabto-ltx
parenta27e39077f6da32d6a49b9af54b92a8380fee0af (diff)
new package tabto-ltx
git-svn-id: svn://tug.org/texlive/trunk@1640 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/tabto-ltx')
-rw-r--r--Master/texmf-dist/doc/latex/tabto-ltx/tabto.txt49
1 files changed, 49 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tabto-ltx/tabto.txt b/Master/texmf-dist/doc/latex/tabto-ltx/tabto.txt
new file mode 100644
index 00000000000..fdce2375802
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/tabto-ltx/tabto.txt
@@ -0,0 +1,49 @@
+tabto.sty
+
+version 1.0 (May 2006)
+
+Donald Arseneau, Vancouver, Canada (asnd@triumf.ca)
+
+Tabbing to fixed positions in a paragraph.
+
+Two new text positioning commands are defined: \tabto and \tab.
+
+\tabto{<length>}
+
+Tab to a position relative to the left margin in a paragraph
+(any indentation due to a list is part of the `margin' in this
+context). If the text on the line already goes past the desired
+position, the tab starts a new line and moves to the requested
+horizontal position.
+
+\tabto*{<length>}
+
+Similar to \tabto, except it will perform backspacing, and over-
+print previous text on the line whenever that text is already
+longer than the specified length (i.e., no linebreak is produced).
+Line-breaks are suppressed immediately after \tabto or \tabto*.
+
+\tab
+
+Tab to the next tab-stop chosen from a list of tab positions, in
+the traditional style of typewriters. A \tab will always move
+to the next tab stop (or the next line), even if it is already
+exactly at a tab stop. Thus, "\tab\tab" skips a position. A
+linebreak is permitted immediately following a \tab, in case the
+ensuing text does not fit well in the remaining space.
+
+The tab-stop positions are declared using either \TabPositions
+or \NumTabs:
+
+\TabPositions{<length>, <length>,...<length>}
+
+Declares the tab stops as a comma-separated list of positions
+relative to the left margin. A tab-stop at 0pt is implicit, and
+need not be listed.
+
+\NumTabs{<number>}
+
+Declares a list of <number> equally-spaced tabs, starting at the
+left margin and spanning \linewidth. For example \NumTabs{2}
+declares tab-stops at 0pt and 0.5\linewidth, the same as
+\TabPositions{0pt, 0.5\linewidth} or \TabPositions{0.5\linewidth}