diff --git a/main.typ b/main.typ index 4995a41..772581d 100644 --- a/main.typ +++ b/main.typ @@ -2,11 +2,11 @@ #import "@preview/i-figured:0.2.4" #import "@preview/tablex:0.0.9": tablex, rowspanx, colspanx, cellx #import "@preview/wordometer:0.1.3": word-count, total-words -#import "layout.typ": project, indent-par +#import "src/layout.typ": project, indent-par #import "@preview/fletcher:0.5.3" as fletcher: diagram, node, edge #import fletcher.shapes: diamond -#import "utils.typ": * -#import "diagrams.typ": * +#import "src/utils.typ": * +#import "src/diagrams.typ": * #show: word-count #show: project.with( @@ -1482,7 +1482,6 @@ atgriežas un mēģina citu ceļu. diagram( spacing: (0em, 3em), { - terminal-node((0, 0)) std-edge() @@ -1662,7 +1661,6 @@ atgriežas un mēģina citu ceļu. action-node((1, 5), [Atjaunina pašreizējā un\ nākamā stāvu marķierus]) std-edge("l,uu,l") - }), ), ) @@ -2108,9 +2106,8 @@ Projekta turpmākās attīstības iespējas ietver: "bibliography.yml", ) -#include "attachments.typ" -#include "code.typ" -#include "doc.typ" +#include "src/attachments.typ" +#include "src/code.typ" // #pagebreak() // #total-words words diff --git a/abstract.typ b/src/abstract.typ similarity index 100% rename from abstract.typ rename to src/abstract.typ diff --git a/attachments.typ b/src/attachments.typ similarity index 70% rename from attachments.typ rename to src/attachments.typ index 281c927..ae91cb9 100644 --- a/attachments.typ +++ b/src/attachments.typ @@ -6,22 +6,22 @@ #figure( caption: [Pilns "hexlab" bibliotēkas testu rezultāts], - image("assets/images/tests/hexlab-full.png", height: 90%), + image("../assets/images/tests/hexlab-full.png", height: 90%), ) #figure( caption: [Tarpaulin rīka rezultāts "hexlab" bibliotēkai], - image("assets/images/tests/tarpaulin/hexlab.png"), + image("../assets/images/tests/tarpaulin/hexlab.png"), ) #figure( caption: [Tokei rīka rezultāts "Maze Ascension" spēlei], - image("assets/images/tokei/maze-ascension.png"), + image("../assets/images/tokei/maze-ascension.png"), ) #figure( caption: [Tokei rīka rezultāts "hexlab" bibliotēkai], - image("assets/images/tokei/hexlab.png"), + image("../assets/images/tokei/hexlab.png"), ) diff --git a/code.typ b/src/code.typ similarity index 62% rename from code.typ rename to src/code.typ index 5c7fa08..e68e7c7 100644 --- a/code.typ +++ b/src/code.typ @@ -2,19 +2,19 @@ #codeblock( [Labirinta būvētāja implementācijas piemērs], - "assets/code/hexlab/builder.rs", + "../assets/code/hexlab/builder.rs", ) #codeblock( [Labirinta sienu reprezentācijas piemērs], - "assets/code/hexlab/walls.rs", + "../assets/code/hexlab/walls.rs", ) #codeblock( [Labirinta stāvu implementācijas piemērs], - "assets/code/maze-ascension/floor.rs", + "../assets/code/maze-ascension/floor.rs", ) #codeblock( [Labirinta ģenerācijas implementācijas piemērs], - "assets/code/maze-ascension/maze_generation.rs", + "../assets/code/maze-ascension/maze_generation.rs", ) diff --git a/diagrams.typ b/src/diagrams.typ similarity index 100% rename from diagrams.typ rename to src/diagrams.typ diff --git a/layout.typ b/src/layout.typ similarity index 100% rename from layout.typ rename to src/layout.typ diff --git a/utils.typ b/src/utils.typ similarity index 100% rename from utils.typ rename to src/utils.typ