diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
commit | 007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (patch) | |
tree | 90d17e00e572ecb1e24764b6f29c80e098b08d29 /Master/texmf-dist/doc/latex/makebox | |
parent | 950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (diff) |
doc/latex
git-svn-id: svn://tug.org/texlive/trunk@84 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/makebox')
-rw-r--r-- | Master/texmf-dist/doc/latex/makebox/ChangeLog | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/makebox/README | 46 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/makebox/getversion.tex | 7 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/makebox/makebox.pdf | bin | 0 -> 281990 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/makebox/makebox.xml | 29 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/makebox/testmakebox.tex | 25 |
6 files changed, 109 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/makebox/ChangeLog b/Master/texmf-dist/doc/latex/makebox/ChangeLog new file mode 100644 index 00000000000..78164ce8502 --- /dev/null +++ b/Master/texmf-dist/doc/latex/makebox/ChangeLog @@ -0,0 +1,2 @@ +2004/07/31 v0.1 Harald Harders (h.harders@tu-bs.de) + - Initial version. diff --git a/Master/texmf-dist/doc/latex/makebox/README b/Master/texmf-dist/doc/latex/makebox/README new file mode 100644 index 00000000000..b07e4f35de7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/makebox/README @@ -0,0 +1,46 @@ +makebox.sty +=========== + +Define a \makebox* command that does the same as a \makebox command +while the width is given by a sample text instead of an explicit length +measure. + + +Copyright 2000--2004 Harald Harders + +This program can be redistributed and/or modified under the terms +of the LaTeX Project Public License Distributed from CTAN +archives in directory macros/latex/base/lppl.txt; either +version 1 of the License, or any later version. + + + +Installation: + +automatic: - run make + - run make install + or + - run make + - copy makebox.sty to a place where LaTeX can find it + - run texhash or the corresponding command of your distribution + +by hand: - execute latex on makebox.ins + - copy makebox.sty to a place LaTeX can find it + - run texhash or the corresponding command of your distribution + If you also want to re-compile the documentation which should not + be necessary do the following items, too: + - execute: + pdflatex makebox.dtx + pdflatex makebox.dtx + makeindex -s gglo.ist -o makebox.gls makebox.glo + makeindex -s gind.ist makebox + pdflatex makebox.dtx + - copy makebox.pdf to the documentation tree of your + TeX implementation + - run texhash or the corresponding command of your distribution, + again + + +2004/07/31 +Harald Harders +h.harders@tu-bs.de diff --git a/Master/texmf-dist/doc/latex/makebox/getversion.tex b/Master/texmf-dist/doc/latex/makebox/getversion.tex new file mode 100644 index 00000000000..e8c57a3cbe6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/makebox/getversion.tex @@ -0,0 +1,7 @@ +\documentclass[english]{ltxdoc} +\nofiles +\usepackage{makebox} +\GetFileInfo{makebox.sty} +\typeout{VERSION \fileversion} +\begin{document} +\end{document} diff --git a/Master/texmf-dist/doc/latex/makebox/makebox.pdf b/Master/texmf-dist/doc/latex/makebox/makebox.pdf Binary files differnew file mode 100644 index 00000000000..6ec9eb77c68 --- /dev/null +++ b/Master/texmf-dist/doc/latex/makebox/makebox.pdf diff --git a/Master/texmf-dist/doc/latex/makebox/makebox.xml b/Master/texmf-dist/doc/latex/makebox/makebox.xml new file mode 100644 index 00000000000..40e45387936 --- /dev/null +++ b/Master/texmf-dist/doc/latex/makebox/makebox.xml @@ -0,0 +1,29 @@ +<?xml version="1.0"?> +<!DOCTYPE entry SYSTEM "../catalogue.dtd"> +<entry id="makebox" + datestamp="2004/07/31" + modifier="h.harders@tu-bs.de"> + <about> + <name>makebox</name> + <caption>makebox* command with width from a sample text.</caption> + <author> + <name>Harald Harders</name> + <email>h.harders@tu-bs.de</email> + </author> + <license type="lppl"/> + <version> + <number>0.1</number> + </version> + </about> + <description> + <abstract> +Define a \makebox* command that does the same as a \makebox command +while the width is given by a sample text instead of an explicit length +measure. + </abstract> + </description> + <distribution> + <texlive>latex3</texlive> + <ctan>macros/latex/contrib/makebox</ctan> + </distribution> +</entry> diff --git a/Master/texmf-dist/doc/latex/makebox/testmakebox.tex b/Master/texmf-dist/doc/latex/makebox/testmakebox.tex new file mode 100644 index 00000000000..0e61830c55f --- /dev/null +++ b/Master/texmf-dist/doc/latex/makebox/testmakebox.tex @@ -0,0 +1,25 @@ +\documentclass{minimal} +\usepackage[T1]{fontenc} +\usepackage{makebox} +\unitlength1mm +\begin{document} +|asdf| + +|\makebox[20mm][l]{asdf}| + +|\makebox[20mm][r]{asdf}| + +|\makebox[20mm][c]{asdf}| + +|asdfasdf| + +|\makebox*{asdfasdf}[l]{asdf}| + +|\makebox*{asdfasdf}{asdf}| + +|\makebox*{asdfasdf}[r]{asdf}| + + +|\makebox(20,3)[r]{asdf}| + +\end{document} |