forked from UniMath/agda-unimath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TEMPLATE.lagda.md
52 lines (34 loc) · 854 Bytes
/
TEMPLATE.lagda.md
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
# File title
```agda
{-# OPTIONS --safe #-}
module foundation.template where
open import foundation-core.template public
```
<details><summary>Imports</summary>
```agda
open import ...
```
</details>
## Idea
A **concept** `C` is a _insert abstract idea of concept_, and is defined as
_insert definition using words_.
## Definition
```agda
concept : ...
concept = ...
```
## Properties
### Concepts satisfy a property
```agda
satisfies-property-concept : ...
satisfies-property-concept = ...
```
## Examples
### The following subconcept is a concept
```agda
concept-subconcept : ...
concept-subconcept = ...
```
## See also
- An instructive example of a file with the expected structure is
[`order-theory.galois-connections`](https://raw.githubusercontent.com/UniMath/agda-unimath/master/src/order-theory/galois-connections.lagda.md).