|
2 | 2 | ======= |
3 | 3 | *Extraction and analysis of character networks from bandes dessinées, comics, mangas, and such* |
4 | 4 |
|
5 | | -* Copyright 2018-2022 Vincent Labatut |
| 5 | +* Copyright 2018-2023 Vincent Labatut |
6 | 6 |
|
7 | 7 | NaNet is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation. For source availability and license information see `licence.txt` |
8 | 8 |
|
@@ -43,6 +43,17 @@ Here are the folders composing the project: |
43 | 43 | * Folder `res`: resources used by the `R` scripts. |
44 | 44 | * Folder `src`: contains the `R` source code. |
45 | 45 |
|
| 46 | +The various narrative units used in the scripts are as follows: |
| 47 | +* Panel: the smallest unit, a single panel from the comic. It belongs to a single page, and therefore a single volume, and therefore a single narrative arc. |
| 48 | +* Page: all the panels present on the same page. It contains panels, and belongs to a single volume, and therefore a single arc. |
| 49 | +* Scene: a sequence of panels, which can span several pages but not volumes. It contains panels, and belongs to a single volume, and therefore a single arc. Several scenes can take place in parallel, so a panel can belong to several scenes at once. |
| 50 | +* Volume: all the pages of a comic book issue. It contains panels, pages and scenes, and belongs to a single arc. |
| 51 | +* Arc: narrative arc constituting the whole story. It contains panels, pages, scenes and volumes. |
| 52 | + |
| 53 | +We also initially defined the notion of series (subseries), which could be a sequence of volumes, but did not need it in the end, and therefore the implementation is not complete for this narrative unit. |
| 54 | + |
| 55 | +In addition, for ASOIAF, we had to add another narrative unit to match the novels: chapters. A chapter is a part of a volume. It contains panels, pages and scenes (a scene cannot span several chapters, like for volumes), and belongs to a single volume and a single arc. |
| 56 | + |
46 | 57 |
|
47 | 58 | # Installation |
48 | 59 | You first need to install `R` and the required packages: |
|
0 commit comments