generated from entelecheia/course-template-i18n
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(readme): update project description and badge token
- Loading branch information
1 parent
ba25218
commit db63383
Showing
11 changed files
with
266 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.10" | ||
jobs: | ||
pre_build: | ||
# Generate on-the-fly Sphinx configuration from Jupyter Book's _config.yml | ||
- "jupyter-book config sphinx book/" | ||
|
||
formats: | ||
- epub | ||
|
||
# Optionally declare the Python requirements required to build your docs | ||
python: | ||
install: | ||
- requirements: book/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<!--next-version-placeholder--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
####################################################################################### | ||
# A default configuration that will be loaded for all jupyter books | ||
# See the documentation for help and more options: | ||
# https://jupyterbook.org/customize/config.html | ||
|
||
####################################################################################### | ||
# Book settings | ||
title: "NLP for Social Science" # The title of the book. Will be placed in the left navbar. | ||
author: "Young Joon Lee" # The author of the book | ||
copyright: "2024" # Copyright year to be placed in the footer | ||
# logo: Path to the book logo | ||
|
||
# Force re-execution of notebooks on each build. | ||
# See https://jupyterbook.org/content/execute.html | ||
execute: | ||
execute_notebooks: cache | ||
exclude_patterns: | ||
- "*.ipynb" | ||
allow_errors: true | ||
|
||
# Define the name of the latex output file for PDF builds | ||
latex: | ||
latex_documents: | ||
targetname: book.tex | ||
|
||
# Add a bibtex file so that we can create citations | ||
bibtex_bibfiles: | ||
- references.bib | ||
|
||
# Information about where the book exists on the web | ||
repository: | ||
url: https://github.com/entelecheia/nlp4ss # Online location of your book | ||
path_to_book: book # Optional path to your book, relative to the repository root | ||
branch: main # Which branch of the repository should be used when creating links (optional) | ||
|
||
# Add GitHub buttons to your book | ||
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository | ||
html: | ||
use_issues_button: true | ||
use_repository_button: true | ||
use_edit_page_button: true | ||
favicon: https://assets.entelecheia.ai/favicon.png # favicon: Path to the favicon image | ||
google_analytics_id: G-BQJE5V9RK2 # google_analytics_id: Google Analytics ID | ||
|
||
sphinx: | ||
config: | ||
html_extra_path: ["assets"] | ||
bibtex_reference_style: author_year | ||
mathjax_path: https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js | ||
intersphinx_mapping: | ||
ebp: | ||
- "https://executablebooks.org/en/latest/" | ||
- null | ||
myst-parser: | ||
- "https://myst-parser.readthedocs.io/en/latest/" | ||
- null | ||
myst-nb: | ||
- "https://myst-nb.readthedocs.io/en/latest/" | ||
- null | ||
sphinx: | ||
- "https://www.sphinx-doc.org/en/master" | ||
- null | ||
nbformat: | ||
- "https://nbformat.readthedocs.io/en/latest" | ||
- null | ||
sd: | ||
- "https://sphinx-design.readthedocs.io/en/latest" | ||
- null | ||
sphinxproof: | ||
- "https://sphinx-proof.readthedocs.io/en/latest/" | ||
- null | ||
hoverxref_intersphinx: | ||
- "sphinxproof" | ||
mathjax3_config: | ||
tex: | ||
macros: | ||
"N": "\\mathbb{N}" | ||
"floor": ["\\lfloor#1\\rfloor", 1] | ||
"bmat": ["\\left[\\begin{array}"] | ||
"emat": ["\\end{array}\\right]"] | ||
add_module_names: false | ||
autosummary_generate: true | ||
|
||
extra_extensions: | ||
- sphinx.ext.intersphinx | ||
- sphinx.ext.autodoc | ||
- sphinx.ext.autosummary | ||
- sphinx.ext.napoleon | ||
- sphinx.ext.viewcode | ||
- sphinx_inline_tabs | ||
- sphinx_proof | ||
- sphinx_examples | ||
- hoverxref.extension | ||
- sphinxcontrib.youtube | ||
- sphinxcontrib.video | ||
- sphinxcontrib.mermaid | ||
- sphinx_thebe | ||
- sphinx_carousel.carousel | ||
- sphinxcontrib.lastupdate | ||
|
||
launch_buttons: | ||
colab_url: "https://colab.research.google.com" | ||
thebe: true |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.