1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 07:18:06 +02:00

Update quick-start-guide.md

Add missing information on upgrading to texlive-full
This commit is contained in:
RadostW 2024-11-10 20:02:31 +01:00 committed by GitHub
parent 1a4d138ade
commit 40dcb4ad50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -185,6 +185,27 @@ First, we see some information about the host system (the machine that the toolk
When you run into problems with your toolkit, you should first run the doctor script and check it's output.
## LaTeX environment
To save bandwidth, the Overleaf image only comes with a minimal install of TeXLive. To upgrade to a complete TeXLive installation, run the installation script in the Overleaf container with the following command
```sh
$ docker exec sharelatex tlmgr install scheme-full
```
To make this changes persistent when docker restarts label current state (replace 0.0.0 with sharelatex version)
```sh
$ docker commit sharelatex sharelatex/sharelatex:0.0.0-with-texlive-full
```
thenn add `-with-texlive-full1` to the end of your version in config/version and run `bin/up -d` again.
```sh
$ cat config/version
4.0.5-with-texlive-full
```
## Getting Help