diff options
author | Karl Berry <karl@freefriends.org> | 2016-04-02 21:43:35 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-04-02 21:43:35 +0000 |
commit | dddb3ce03f2d2bde094879b3ed56d17d0c7b871d (patch) | |
tree | 82a59cde8a1735eff6a73e62bbd47d0d990b9629 /Master/texmf-dist/doc/latex/bxenclose | |
parent | 0add57ee639971ed36026142db8ace9bb613d7af (diff) |
bxenclose (2apr16)
git-svn-id: svn://tug.org/texlive/trunk@40213 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/bxenclose')
-rw-r--r-- | Master/texmf-dist/doc/latex/bxenclose/LICENSE | 27 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/bxenclose/README.md | 60 |
2 files changed, 87 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/bxenclose/LICENSE b/Master/texmf-dist/doc/latex/bxenclose/LICENSE new file mode 100644 index 00000000000..49f803e083e --- /dev/null +++ b/Master/texmf-dist/doc/latex/bxenclose/LICENSE @@ -0,0 +1,27 @@ +$BK\%=%U%H%&%'%"$O(B MIT $B%i%$%;%s%9$N2<$GG[I[$5$l$^$9!#(B +$BCx:n8"$O:n<T$G$"$k!VH,EP(B $B?rG7!JJLL>(B ZR$B!K!W$KB0$7$^$9!#(B +$B$^$?K\%=%U%H%&%'%"$OL5J]>Z$G$9!#(B + +This software is distributed under the MIT License. + +The MIT License + +Copyright (c) 2016 Takayuki YATO (aka. "ZR") + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Master/texmf-dist/doc/latex/bxenclose/README.md b/Master/texmf-dist/doc/latex/bxenclose/README.md new file mode 100644 index 00000000000..e60047f76dd --- /dev/null +++ b/Master/texmf-dist/doc/latex/bxenclose/README.md @@ -0,0 +1,60 @@ +BXenclose Package +================= + +LaTeX: To enclose the document body with some pieces of code + +The package enables authors to designate in the preamble to make the +document body enclosed with the given pieces of code. As is known, +there are already various mechanisms provided by LaTeX kernel or +packages that attach “hooks” at the beginning and end of documents. +This package tries harder to win the race, that is, place the given +code as close to the real document body as possible. + +### System requirement + + * TeX format: LaTeX. + * TeX engine: Anything. + * Dependent packages: None. + +### Installation + + - `*.sty` → $TEXMF/tex/latex/BXenclose + +### License + +This package is distributed under the MIT License. + +The bxenclose Package +--------------------- + +### Package Loading + + \usepackage{bxenclose} + +No options are available. + +### Usage + +This package defines the following single command: + + \enclosebodywith{<begin>}{<end>} + +This command makes the document body enclosed with `<begin>` and +`<end>`. That is, `<begin>` is executed immediately before the body +text (probably after other “begin-document hooks” provided by LaTeX +itself and other packages) and `<end>` is executed immediately after +the body text (probably before other “end-document hooks”). + +Note that both `<begin>` and `<end>` code are treated as part of the +document body. In particular, `<begin>` code cannot contain any +preamble-restricted commands (such as `\listfiles`). + +Revision History +---------------- + + * Version 0.2 〈2016/04/01〉 + - The first public version. + +-------------------- +Takayuki YATO (aka. "ZR") +http://zrbabbler.sp.land.to/ |