diff options
author | Karl Berry <karl@freefriends.org> | 2013-03-13 22:35:29 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-03-13 22:35:29 +0000 |
commit | 8b6e07d34f4b46b6c6a049934683348b12ff3fd6 (patch) | |
tree | a901f3638238c4d914bb562daa56ccf373e75cc5 /Master/texmf-dist | |
parent | 19c2f897fb64b29dc07b01d9338b6e83c0c62927 (diff) |
mversion (13mar13)
git-svn-id: svn://tug.org/texlive/trunk@29370 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/latex/mversion/README | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/mversion/mVersion.pdf | bin | 163908 -> 163317 bytes | |||
-rw-r--r-- | Master/texmf-dist/source/latex/mversion/mVersion.dtx | 9 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/mversion/mVersion.sty | 2 |
4 files changed, 7 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/latex/mversion/README b/Master/texmf-dist/doc/latex/mversion/README index 56051877686..ad397675a28 100644 --- a/Master/texmf-dist/doc/latex/mversion/README +++ b/Master/texmf-dist/doc/latex/mversion/README @@ -1,6 +1,6 @@ This material is subject to the LaTeX Project Public License. See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html for the details of that license. -mVersion, v1.0 (c) 2011 by Michael Schmeing +mVersion, v1.0.1 (c) 2011 by Michael Schmeing The mVersion package is an easy way to keep track of different versions of your document. It provides a counter that can be incremented each time you compile the document. By displaying the counter on each page, (e.g. with the \textsf{hyperref}-package) you can see which of two versions is the newer one. diff --git a/Master/texmf-dist/doc/latex/mversion/mVersion.pdf b/Master/texmf-dist/doc/latex/mversion/mVersion.pdf Binary files differindex 3855bfa272a..7dfb2799a3a 100644 --- a/Master/texmf-dist/doc/latex/mversion/mVersion.pdf +++ b/Master/texmf-dist/doc/latex/mversion/mVersion.pdf diff --git a/Master/texmf-dist/source/latex/mversion/mVersion.dtx b/Master/texmf-dist/source/latex/mversion/mVersion.dtx index 6722b5935cc..1870defbfe6 100644 --- a/Master/texmf-dist/source/latex/mversion/mVersion.dtx +++ b/Master/texmf-dist/source/latex/mversion/mVersion.dtx @@ -21,8 +21,8 @@ %</driver> %<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01] %<package>\ProvidesPackage{mVersion} -%<*package> - [2011/10/18 v1.0 easy versioning for LaTeX] +%<*package> + [2013/03/11 v1.0.1 easy versioning for LaTeX] %</package> % %<*driver> @@ -59,6 +59,7 @@ % % % \changes{v1.0}{2011/10/18}{Initial version} +% \changes{v1.0.1}{2013/03/11}{Typos fixed} % % \GetFileInfo{mVersion.dtx} % @@ -96,7 +97,7 @@ % \PrintIndex % \section{Implementation} % -% We begin with a small macro |parseline| that reads a line of the form X;Y followed by one space. It then assigns X to |versionnumber| and Y to |bulidnumber|. This macro helps reading the fixed version number and the build number from the file \emph{version.dat}. Since \LaTeX\ adds an additional space to each line it reads from file, we need this macro. +% We begin with a small macro |parseline| that reads a line of the form X;Y followed by one space. It then assigns X to |versionnumber| and Y to |buildnumber|. This macro helps reading the fixed version number and the build number from the file \emph{version.dat}. Since \LaTeX\ adds an additional space to each line it reads from file, we need this macro. % \begin{macrocode} \def\parseline#1;#2 %this space is important { @@ -127,7 +128,7 @@ \read\versionfile to \versionline \closein\versionfile % \end{macrocode} -% |versionline| no contains the version information in the X;Y--format but with an additional space following. Therefore, we let |versionline| be parsed by |pareseline|. +% |versionline| now contains the version information in the X;Y--format but with an additional space following. Therefore, we let |versionline| be parsed by |pareseline|. % \begin{macrocode} \expandafter\parseline\versionline % \end{macrocode} diff --git a/Master/texmf-dist/tex/latex/mversion/mVersion.sty b/Master/texmf-dist/tex/latex/mversion/mVersion.sty index 4492d3b822d..e12d7130897 100644 --- a/Master/texmf-dist/tex/latex/mversion/mVersion.sty +++ b/Master/texmf-dist/tex/latex/mversion/mVersion.sty @@ -22,7 +22,7 @@ %% \NeedsTeXFormat{LaTeX2e}[1999/12/01] \ProvidesPackage{mVersion} - [2011/10/18 v1.0 easy versioning for LaTeX] + [2013/03/11 v1.0.1 easy versioning for LaTeX] \def\parseline#1;#2 %this space is important { \def\versionnumber{#1} |