Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 3 new pages/sections to docs #193

Merged
merged 6 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ parse:
# nb_number_source_lines: true

# Define the name of the latex output file for PDF builds
latex:
latex_documents:
targetname: book.tex
# latex:
# latex_documents:
# targetname: book.tex

# Add a bibtex file so that we can create citations
# bibtex_bibfiles:
Expand All @@ -35,8 +35,10 @@ repository:
# Add GitHub buttons to your book
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
html:
home_page_in_navbar: false
use_issues_button: true
use_repository_button: true
use_edit_page_button: true

sphinx:
extra_extensions: [
Expand All @@ -50,3 +52,5 @@ sphinx:
]
config:
bibtex_reference_style: label

exclude_patterns: [example_notebooks/*]
19 changes: 8 additions & 11 deletions docs/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,17 @@
format: jb-book
root: index
parts:
# - file: markdown
- caption: Documentation
chapters:
- file: quick_start
- file: classes-datastructures
- file: example_notebooks/workflow_minimal.ipynb
- file: input-files
- caption: Notebooks
chapters:
- file: example_notebooks/echopro_workflow.ipynb
- file: example_notebooks/reports_workflow.ipynb
- file: example_notebooks/semi_variogram_workflow.ipynb
- file: example_notebooks/kriging_mesh_walkthrough.ipynb
- file: example_notebooks/transect_selection_workflow.ipynb
- file: example_notebooks/bootstrapping_walkthrough.ipynb
- file: input_files
- file: theory
- file: algo
title: Algorithmic implementation
sections:
- file: algo1
- file: algo2
- caption: Help & reference
chapters:
- file: api
3 changes: 3 additions & 0 deletions docs/algo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Algorithmic Implementations

The following sections connect the underlying [theory](theory:theory_base) with the variables and data structures presented in [](data-structure).
18 changes: 18 additions & 0 deletions docs/algo1.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Algo page1"
]
}
],
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
18 changes: 18 additions & 0 deletions docs/algo2.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Algo page 2"
]
}
],
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
1 change: 1 addition & 0 deletions docs/classes-datastructures.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
(data-structure)=
# Classes and data structures

## Classes
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# EchoPro documentation and example notebooks
# EchoPro

This site currently hosts example Jupyter notebooks for the new Python EchoPro package (https://github.com/uw-echospace/EchoPro/). Over time, the documentation for this package will be added here too.

Expand Down
File renamed without changes.
18 changes: 18 additions & 0 deletions docs/quick_start.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Quick start"
]
}
],
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
File renamed without changes.
33 changes: 33 additions & 0 deletions docs/theory.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"(theory:theory_base)=\n",
"# Theory"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Loading