diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-11-04 18:33:15 +0100 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-11-04 18:33:15 +0100 |
commit | b7a7a659017d70b5432e35dc1c596a985bcb0735 (patch) | |
tree | 1cefe269dd04df198195f0d86d6e89ac6dd18170 | |
parent | 9ae512085ef7efef93be67908020c028597c60c5 (diff) | |
download | luatexbase-b7a7a659017d70b5432e35dc1c596a985bcb0735.tar.gz |
mcb doc excuses
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | luatexbase-mcb.dtx | 15 |
2 files changed, 9 insertions, 8 deletions
@@ -13,7 +13,7 @@ modutils - use tex.error for error reporting if available - review logic (see what LaTeX2e does) - General review of code and comments. -- Update user documentation. +- Update user documentation. Include template(s) for Lua modules. mcb --- diff --git a/luatexbase-mcb.dtx b/luatexbase-mcb.dtx index 3d64f34..09c8c1c 100644 --- a/luatexbase-mcb.dtx +++ b/luatexbase-mcb.dtx @@ -125,10 +125,8 @@ See source file '\inFileName' for details. % This package manages the callback adding and removing, by providing new % functions and overwriting \texttt{callback.register}. It also allows to % create and call new callbacks.\par -% For an (outdated) introduction on this package (among others), please refer -% to the document \texttt{luatextra-reference.pdf}. The documentation section -% of the present document is currently incomplete, sorry for this and thanks -% for your patience.\par +% The user part of this documentation is currently very incomplete, and will +% be expanded later. Sorry for this and thanks for your patience.\par % \textbf{Warning.} Currently assumes that \textsf{luatexbase-modutils} % has been previously loaded. (This is a temporary limitation.) % \end{abstract} @@ -150,18 +148,21 @@ See source file '\inFileName' for details. % % This package solves this problem by adding mainly one new function % \verb+luatexbase.add_to_callback+ that adds a function in a callback. With -% this -% function it is possible for packages to register their function in a -% callback without overwriting the functions of the other packages. +% this function it is possible for packages to register their function in a +% callback without overwriting the functions of the other packages. There are +% also functions to remove one or all functions from a callback. +% See comments in the implementation section for details. % % The functions are called in a certain order, and when a package registers a % callback it can assign a priority to its function. Conflicts can still % remain even with the priority mechanism, for example in the case where two % packages want to have the highest priority. In these cases the packages have % to solve the conflicts themselves. +% See comments in the implementation section for details. % % This package also privides a way to create and call new callbacks, in % addition to the default Lua\TeX\ callbacks. +% See comments in the implementation section for details. % % \subsubsection*{Limitations} % |