You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An extension for JupyterLab which allows for live-editing of LaTeX documents.
6
14
@@ -17,7 +25,8 @@ For more advanced usage documentation, see [here](docs/advanced.md).
17
25
18
26
## Requirements
19
27
20
-
- JupyterLab 1.0
28
+
- JupyterLab >= 3.0
29
+
- older versions are supported in previous releases available on PyPI and npm, check [releases](https://github.com/jupyterlab/jupyterlab-latex/releases)
21
30
- Python >= 3.6
22
31
- An application that can compile `.tex` files to PDF (e.g., `pdflatex`, `xelatex`; use `pdflatex.exe` on Windows with MiKTeX). This application must be available as a command in the same environment as the notebook server.
23
32
- An application that can process `.bib` files for producing bibliographies. As with the LaTeX command, this must be available in the same environment as the notebook server.
@@ -26,24 +35,40 @@ For more advanced usage documentation, see [here](docs/advanced.md).
26
35
27
36
This extension includes both a notebook server extension (which interfaces with the LaTeX compiler)
28
37
and a lab extension (which provides the UI for the LaTeX preview).
29
-
In order to use it, you must enable both of them.
38
+
The Python package named `jupyterlab_latex` provides both of them as a prebuilt extension.
30
39
31
-
To install the server extension, run the following in your terminal:
40
+
To install the extension, run the following in your terminal:
32
41
33
42
```bash
34
43
pip install jupyterlab_latex
35
44
```
36
45
37
-
If you are running Notebook 5.2 or earlier, enable the server extension by running
46
+
### Check installation
47
+
48
+
To ensure that extension is properly installed, you could check server and lab extensions:
0 commit comments