summaryrefslogtreecommitdiff
path: root/tests/typ/layout/transform.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/layout/transform.typ')
-rw-r--r--tests/typ/layout/transform.typ49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/typ/layout/transform.typ b/tests/typ/layout/transform.typ
new file mode 100644
index 00000000..5b1fa2a1
--- /dev/null
+++ b/tests/typ/layout/transform.typ
@@ -0,0 +1,49 @@
+// Test transformations.
+
+---
+// Test creating the TeX and XeTeX logos.
+#let size = 11pt
+#let tex = [{
+ [T]
+ h(-0.14 * size)
+ move(y: 0.22 * size)[E]
+ h(-0.12 * size)
+ [X]
+}]
+
+#let xetex = {
+ [X]
+ h(-0.14 * size)
+ scale(x: -100%, move(y: 0.26 * size)[E])
+ h(-0.14 * size)
+ [T]
+ h(-0.14 * size)
+ move(y: 0.26 * size)[E]
+ h(-0.12 * size)
+ [X]
+}
+
+#font("Latin Modern Math", size)
+Neither #tex, \
+nor #xetex!
+
+---
+// Test combination of scaling and rotation.
+#page(height: 80pt)
+#align(center + horizon,
+ rotate(20deg, scale(70%, image("../../res/tiger.jpg")))
+)
+
+---
+// Test setting rotation origin.
+#rotate(10deg, origin: top + left,
+ image("../../res/tiger.jpg", width: 50%)
+)
+
+---
+// Test setting scaling origin.
+#let r = rect(width: 100pt, height: 10pt, fill: forest)
+#page(height: 65pt)
+#scale(r, x: 50%, y: 200%, origin: left + top)
+#scale(r, x: 50%, origin: center)
+#scale(r, x: 50%, y: 200%, origin: right + bottom)