summaryrefslogtreecommitdiff
path: root/contrib/test.osml
blob: 100bc774505041d27e2c539e415f5540bcd668d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
%{
	We're currently inside a block comment.
	%{
		Note that block comments can be nested, easily allowing you to comment
		out blocks which already contain comments.
	}%
}%

% Well, line comments, as we know them from TeX also work

\import{meta}
\import{book}

\domain#special_words{
	\struct#latex
	\struct#ousia
}

\book{
	\include{chapters/chapter1}
	\include{chapters/chapter2}

	\begin{note}{Behaviour of "Include"}
		Analogous to the `include` command in \latex, \ousia forces the included
		file to be *complete* in a sense, that it must not have dangling open
		commands.
	\end{note}
}