Skip to content

Latest commit

 

History

History
78 lines (70 loc) · 1.94 KB

File metadata and controls

78 lines (70 loc) · 1.94 KB

📝systemsScienceNotes

The goal is to store notes (e.g., markdown files, code notebooks, programs, and applications) related to various systems science papers, presentations, tutorials, classes, and books.

File Structure

At the top level of the repository there is a folder for papers (paper/), presentations (prez/), tutorials (tutor/), classes (class/), and books (book):

├── README.md
├── book
├── class
├── paper
├── prez
└── tutor

In each of the folders there are sub folders for specific papers (SSP#/), presentations (SSS#/), tutorials (SST#/), classes (SSC#/), and books (SSB#/):

├── README.md
├── book
│   ├── SSB1
│   └── SSB2
├── class
│   ├── SSC1
│   └── SSC2
├── paper
│   ├── SSP1
│   └── SSP2
├── prez
│   ├── SSS1
│   └── SSS2
└── tutor
    ├── SST1
    └── SST2

Finally, in each of the sub folders there is a README (ssb1.md) describing the information source and notes created from the information source:

├── README.md
├── book
│   ├── SSB1
│   │   ├── chap1
│   │   └── ssb1.md
│   ├── SSB2
│   │   ├── chap1
│   │   └── ssb2.md
│   └── SSB3
│       ├── chap1
│       └── ssb3.md
├── class
│   ├── SSC1
│   │   ├── ssc1.md
│   │   └── topic1
│   ├── SSC2
│   │   ├── ssc2.md
│   │   └── topic1
│   ├── SSC3
│   │   ├── ssc3.md
│   │   └── topic1
│   ├── SSC4
│   │   ├── ssc4.md
│   │   └── topic1
│   └── SSC5
│       ├── ssc5.md
│       └── topic1
├── paper
│   ├── SSP1
│   └── SSP2
├── prez
│   ├── SSS1
│   └── SSS2
└── tutor
    ├── SST1
    └── SST2