> 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/latex/ru/voprosy-i-otvety/59-i-have-a-lot-of-.cls-.sty-.bst-files-and-i-want-to-put-them-in-a-folder-to-keep-my-project-unclut.md).

# У меня много файлов .cls, .sty и .bst, и я хочу поместить их в папку, чтобы не загромождать проект. Но мой проект не находит их, и компиляция не проходит корректно

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

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

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

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

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

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

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

**Примечание**: Ваш основной файл документа и ваш `latexmkrc` файл должны оставаться на верхнем уровне вашего проекта, а не в папке.


---

# 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/latex/ru/voprosy-i-otvety/59-i-have-a-lot-of-.cls-.sty-.bst-files-and-i-want-to-put-them-in-a-folder-to-keep-my-project-unclut.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.
