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

Documentation getting to texlive-full #311

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
21 changes: 21 additions & 0 deletions doc/quick-start-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not sufficient anymore. tlmgr path add is required for linking all the bin/ scripts.

```

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

Expand Down