summaryrefslogtreecommitdiff
path: root/tex/context/sample
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2009-07-17 13:16:00 +0200
committerHans Hagen <pragma@wxs.nl>2009-07-17 13:16:00 +0200
commitb32da8747292384893ea07a0a5659b24eb216c10 (patch)
tree375c6cd142330f37405076299c4d282b666640f9 /tex/context/sample
parent18304b4851a1a4af0b4bc614e2e61673e40c62a7 (diff)
downloadcontext-b32da8747292384893ea07a0a5659b24eb216c10.tar.gz
stable 2009.07.17 13:16
Diffstat (limited to 'tex/context/sample')
-rw-r--r--tex/context/sample/demo-cld.cld74
-rw-r--r--tex/context/sample/sample.tex8
2 files changed, 81 insertions, 1 deletions
diff --git a/tex/context/sample/demo-cld.cld b/tex/context/sample/demo-cld.cld
new file mode 100644
index 000000000..7e470da62
--- /dev/null
+++ b/tex/context/sample/demo-cld.cld
@@ -0,0 +1,74 @@
+-- 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()
+
diff --git a/tex/context/sample/sample.tex b/tex/context/sample/sample.tex
index f39c328ee..d54d8b747 100644
--- a/tex/context/sample/sample.tex
+++ b/tex/context/sample/sample.tex
@@ -40,12 +40,15 @@ used in testing bibliographic references and citations.
Thomas Dunne Books, 2007, p.160 \NC \NR
\NC montgomery.tex \NC David R Montgomery \NC Dirt, The Erosion of Civilizations, \endgraf
University of California Press, 2007, p.199 \NC \NR
+\NC carrol.tex \NC Sean B. Carrol \NC The Making of the Fittest, \endgraf
+ Quercus, London, 2006 \NC \NR
\stoptabulate
% Tufte: This quote will always produce hyphenated text, apart from the content,
% it's a pretty good test case for protruding.
-% Ward: I should find a quote in the extremely well written Rare Earth as well.
+% Ward: I should find a quote in the extremely well written Rare Earth as well. All Wards
+% books excell.
% A Short History of Nearly Everything: I wish that I had the memory to remember this book
% verbatim.
@@ -62,4 +65,7 @@ used in testing bibliographic references and citations.
% Dirt, The Erosion of Civilizations: one of those books that you buy immediately after
% reading a few sentences. Also one of those books that every politician should read.
+% The Making of the Fittest: nice sample for color ans subsentence testing. A very
+% readable book but unfortunately it has inter-character spacing.
+
\stoptext