summaryrefslogtreecommitdiff
path: root/tex/context/sample
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2009-10-26 17:23:00 +0100
committerHans Hagen <pragma@wxs.nl>2009-10-26 17:23:00 +0100
commit056c9e0d93dfc35d66ade03b1f144afc319aeaac (patch)
treeead7684dde3ffb6482a4d9ef6a7a06ca0257d710 /tex/context/sample
parent769dc6a950607b3a7affb73bb079c15917a72feb (diff)
downloadcontext-056c9e0d93dfc35d66ade03b1f144afc319aeaac.tar.gz
beta 2009.10.26 17:23
Diffstat (limited to 'tex/context/sample')
-rw-r--r--tex/context/sample/demo-cld.cld74
1 files changed, 0 insertions, 74 deletions
diff --git a/tex/context/sample/demo-cld.cld b/tex/context/sample/demo-cld.cld
deleted file mode 100644
index 7e470da62..000000000
--- a/tex/context/sample/demo-cld.cld
+++ /dev/null
@@ -1,74 +0,0 @@
--- context.enabletrackers {"tud.trace"}
-
-context.setuplayout( {
- width = "middle",
- height = "middle",
-})
-
-context.showframe()
-
-context.starttext()
-
-context.chapter({ "someref" }, "Hello There")
-
-context.readfile("tufte","","not found")
-
-context.startitemize({ "packed" })
- for i=1,10 do
- context.startitem()
- context("this is item %i",i)
- context.stopitem()
- end
-context.stopitemize()
-
-context.startchapter({ title = "test" }, { more = "oeps" })
-
- context["in"]("chapter",{ "someref" })
-
- context.startlinecorrection( { "blank" })
- context.bTABLE()
- for i=1,10 do
- context.bTR()
- for i=1,20 do
- context.bTD({ align= "middle", style = "type" })
- context("%#2i",math.random(99))
- context.eTD()
- end
- context.eTR()
- end
- context.eTABLE()
- context.stoplinecorrection()
-
- context.mathematics("x^{2 \\times 4}")
-
- context.placefigure("caption", function()
- context.externalfigure( { "cow.pdf" } )
- end)
-
- context.placefigure("caption", function()
- context.bTABLE()
- context.bTR()
- context.bTD()
- context.externalfigure( { "cow.pdf" }, { width = "3cm", height = "3cm" } )
- context.eTD()
- context.bTD({ align = "{lohi,middle}" } )
- context("and")
- context.eTD()
- context.bTD()
- context.externalfigure( { "cow.pdf" }, { width = "4cm", height = "3cm" } )
- context.eTD()
- context.eTR()
- context.eTABLE()
- end)
-
-context.stopchapter()
-
-context.chapter("Speed Test 1")
-
-for i=1,50 do
- context.readfile("tufte","","not found")
- context.par()
-end
-
-context.stoptext()
-