Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
afaikiac committed May 18, 2023
1 parent 97aa0d4 commit d0bc2fe
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ latex-g7-32

### Overleaf

1. Скачайте [архив](https://github.com/afaikiac/latex-g7-32/releases/latest/download/latex-g7-32.zip) и импортируйте его как новый проект в Overleaf. Подробнее: [how to upload a project](https://www.overleaf.com/learn/how-to/Uploading_a_project).
1. Скачайте [архив](https://github.com/afaikiac/latex-g7-32/releases/latest/download/latex-g7-32-overleaf.zip) и импортируйте его как новый проект в Overleaf. Подробнее: [how to upload a project](https://www.overleaf.com/learn/how-to/Uploading_a_project).

2. В проекте измените компилятор на `XeLaTeX`. Подробнее: [changing compiler](https://www.overleaf.com/learn/how-to/Changing_compiler).
2. Для использования XeLaTeX вместо pdfLaTeX в проекте измените компилятор на `XeLaTeX`. Подробнее: [changing compiler](https://www.overleaf.com/learn/how-to/Changing_compiler).

### Docker

Expand All @@ -49,12 +49,22 @@ IMAGE="ghcr.io/afaikiac/latex-g7-32:overleaf"
```

```bash
docker run --rm -i --user="$(id -u):$(id -g)" --net=none -v "$PWD":/doc "$IMAGE" latexmk -pdfxe main
WORKDIR="/doc"
```

```bash
# XeLaTeX
docker run --rm -i --user="$(id -u):$(id -g)" --net=none -v "$PWD":"$WORKDIR" "$IMAGE" latexmk -pdfxe
```

```bash
# pdfLaTeX
docker run --rm -i --user="$(id -u):$(id -g)" --net=none -v "$PWD":"$WORKDIR" "$IMAGE" latexmk -pdf
```

### GitHub Action

1. Создайте форк этого репозитория.
1. Создайте новый репозиторий `Use this template -> Create a new repository`.

2. Измените разрешения для `GITHUB_TOKEN` на **read and write**. Подробнее: [setting the permissions of the `GITHUB_TOKEN` for your repository](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#setting-the-permissions-of-the-github_token-for-your-repository).

Expand All @@ -74,4 +84,4 @@ git push --tags

- Можно использовать свободный аналог Times New Roman — [PT Astra Serif](http://astralinux.ru/information/fonts-astra/font-ptastra-serif-ver1003.zip) и [PT Astra Sans](http://astralinux.ru/information/fonts-astra/font-ptastrasans-ttf-ver1002.zip). Подробнее: [опции класса документа](https://github.com/afaikiac/latex-g7-32/tree/G7-32#%D0%BE%D0%BF%D1%86%D0%B8%D0%B8-%D0%BA%D0%BB%D0%B0%D1%81%D1%81%D0%B0-%D0%B4%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D0%B0).

- Шаблон также поддерживает сборку с `pdflatex` с помощью команды `latexmk -pdf main`. Кратко о различиях: [other compilers](https://www.overleaf.com/learn/latex/Choosing_a_LaTeX_Compiler#Other_compilers).
- Кратко о различиях XeLaTeX и pdfLaTeX: [other compilers](https://www.overleaf.com/learn/latex/Choosing_a_LaTeX_Compiler#Other_compilers).

0 comments on commit d0bc2fe

Please sign in to comment.