> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/texlive/ru/navyki/dobavlenie-zavisimostei-latex.md).

# Добавление зависимостей LaTeX

Если у вас есть `.cls`, `.sty`, `.bst` файлы в вашем проекте, процесс компиляции Overleaf не сможет найти эти файлы, если они не размещены на верхнем уровне.

Однако, чтобы организовать свой проект, вы, возможно, захотите поместить эти файлы в папки, чтобы их было легче находить и чтобы верхний уровень вашего проекта не был загромождён.

Хорошая новость в том, что мы можем указать пользовательские `TEXINPUTS` каталоги с помощью `latexmkrc` файла, чтобы Overleaf знал, что ему нужно искать файлы пакетов в этом каталоге.

Для этого предположим, что вы поместили эти файлы пакетов в папку с названием `tex/`; а файлы стиля библиографии соответственно — в папку с названием `bst/`:

1. Нажмите «Add file» в верхней части боковой панели проекта.
2. Выберите «Blank file» и сохраните файл под именем `latexmkrc` (если его там ещё нет).
3. Добавьте следующую строку в `latexmkrc`:

   ```perl
   $ENV{'TEXINPUTS'}='./tex//:' . $ENV{'TEXINPUTS'}; 
   $ENV{'BSTINPUTS'}='./bst//:' . $ENV{'BSTINPUTS'};
   ```

   (или измените имена папок на соответствующие в вашем проекте)

Теперь Overleaf будет сначала искать в папке `tex/` папке, прежде чем искать в системных `TEXINPUTS` для поиска файлов пакетов, а `bst/` папке, прежде чем искать в системных `BSTINPUTS` для поиска файлов стиля библиографии.

(Источник: <https://tex.stackexchange.com/a/50847>)

{% hint style="info" %}
Ваш основной файл документа и ваш `latexmkrc` файл должны оставаться на верхнем уровне вашего проекта, а не в папке.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://overleaf-pro.ayaka.space/texlive/ru/navyki/dobavlenie-zavisimostei-latex.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
