jupyterlab-latex
JupyterLab extension for live editing of LaTeX documents
File Explorer
Download Latest Version (.zip)- binder-on-pr.yml
- build.yml
- check-release.yml
- enforce-label.yml
- prep-release.yml
- publish-release.yml
- apt.txt
- jupyter_notebook_config.py
- postBuild
- requirements.txt
- start
- advanced.md
- jupyter_logo.png
- show_preview.png
- jupyterlab_latex.json
- jupyterlab_latex.json
- api.yaml
- __init__.py
- build.py
- config.py
- synctex.py
- util.py
- plugin.json
- icons.ts
- error.tsx
- index.ts
- pagenumber.tsx
- pdf.ts
- svg.d.ts
- bold.svg
- center-align.svg
- chart-column-solid.svg
- download.svg
- fit.svg
- italic.svg
- left-align.svg
- list.svg
- next.svg
- olist.svg
- previous.svg
- right-align.svg
- table.svg
- underline.svg
- zoom_in.svg
- zoom_out.svg
- index.css
- index.js
- latex.svg
- .copier-answers.yml
- .eslintignore
- .gitignore
- .prettierignore
- .yarnrc.yml
- CHANGELOG.md
- eslint.config.js
- install.json
- LICENSE
- package.json
- pyproject.toml
- README.md
- RELEASE.md
- sample.tex
- setup.py
- tsconfig.json
- tslint.json
- yarn.lock
# Installation Guide
git clone https://github.com/jupyterlab/jupyterlab-latex
Downloads the entire project code from GitHub to your computer.
cd jupyterlab-latex
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install jupyterlab-latex
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. Node.js
Easynpm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
4. Python
Easypip install jupyterlab-latex
Installs the package published on PyPI directly β no need to clone the source.
jupyter server extension list
Type this command into your terminal and run it.
jupyter labextension list
Type this command into your terminal and run it.
pip install -e .
Installs the Python libraries listed in requirements.txt (or similar).
jupyter labextension develop . --overwrite
Type this command into your terminal and run it.
Pulled directly from this repo's README.
