summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/context/third/bnf/README
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2006-12-10 08:46:54 +0000
committerTaco Hoekwater <taco@elvenkind.com>2006-12-10 08:46:54 +0000
commit89c5b435f5ef6f42ee81200b290d05978b30de00 (patch)
treed858401d80aa944040ddaec3b06836e4def8a926 /Master/texmf-dist/doc/context/third/bnf/README
parent7a7c8d7d382636c8b6a6d1ffc9a395cb1c972252 (diff)
undesired packages removed
git-svn-id: svn://tug.org/texlive/trunk@2670 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/context/third/bnf/README')
-rw-r--r--Master/texmf-dist/doc/context/third/bnf/README39
1 files changed, 0 insertions, 39 deletions
diff --git a/Master/texmf-dist/doc/context/third/bnf/README b/Master/texmf-dist/doc/context/third/bnf/README
deleted file mode 100644
index 891661832f9..00000000000
--- a/Master/texmf-dist/doc/context/third/bnf/README
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
- BNF Module README
-
-
-INTRODUCTION
-
-
- The t-bnf module implements a way to easily write BNF grammars in CONTEXT.
- Let's look at an example BNF grammar in a document:
-
- \starttext
-
- Here's a \BNF\ grammar. Enjoy.
-
- \placebnfgrammar
- [here]
- [bnf:test]
- {A test of the \BNF\ module}
- {\startbnfgrammar[]
- <S>: a<S>b
- <S>: $\epsilon$
- \stopbnfgrammar}
-
- Which will match the language $L = \{\,a^nb^n \mid n \geq 0\,\}$.
-
- \stoptext
-
- You may try to generate module documenation embedded in t-bnf.tex with texexec
- as well:
-
- % texexec --interface=en --module --pdf t-bnf.tex
-
- If you have any issues with creating the documentation this may be a result
- of lacking the proper language format. You can look up the proper
- information for generating these formats in minstall.pdf at PRAGMA-ADEs site
- (http://www.pragma-ade.com/).
-
- Enjoy!