summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/korigamik/korigamik-example.tex
blob: bd4b159cc9a250acb401f602c3b766cb8fb0844a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
\documentclass{korigamik}
\usepackage{lipsum}

\title{KorigamiK's\\ Document Class}
\author{KorigamiK}
\bottomnote{Department of Computer Science \& Engineering}

\begin{document}

\maketitle

\tableofcontents

\section{Introduction}
This is an example of the \texttt{KorigamiK} document class.
Articles should always start with a section title, which will usually be `Introduction' or some such.

This document demonstrates the features of the document class.
Here are some logos and abbreviations:
\TeX, \pdfTeX, \BibTeX, \MF, \MP, \LaTeX, \LaTeXe,
\mbox{\ConTeXt}, \pdfLaTeX

On the following pages are shown the document divisions and list environments.

\section{Section headings}
The fact is that his precocity in vice was awful. At five months of age he
used to get into such passions that he was unable to articulate. At six
months, I caught him gnawing a pack of cards. For seven months he was in
the constant habit of catching and kissing the female babies. At eight
months he peremptorily refused to put his signature to the Temperance
pledge.
\paragraph{Text from Edgar Allen Poe's `Never bet the Devil your head'.}

\subsection{Subsection}
\lipsum[2]

\begin{figure}[htbp]
	\centering
	\square
	\caption{A square}
	\label{fig:square}
\end{figure}

\section{Conclusion}
\lipsum[3]

\section{Lists}
An itemized list:
\begin{itemize}
	\item one,
	\item two, and
	\item three.
	      A nested itemized list:
	      \begin{itemize}
		      \item one,
		      \item two, and
		      \item three.
	      \end{itemize}
\end{itemize}
An enumerated list:
\begin{enumerate}
	\item one,
	\item two, and
	\item three.
\end{enumerate}
A description list:
\begin{description}
	\item [one] the first,
	\item [two] the second, and
	\item [three] the third. A nested description list:
	      \begin{description}
		      \item [one] the first,
		      \item [two] the second, and
		      \item [three] the third.
	      \end{description}
\end{description}

\end{document}