> 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/tr/sorular-ve-cevaplar/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).

# Bir sürü .cls, .sty, .bst dosyam var ve onları projemi düzenli tutmak için bir klasöre koymak istiyorum. Ama projem bunları derleme için bulamıyor

İyi haber şu ki, özel `TEXINPUTS` dizinleri kullanarak `latexmkrc` dosyası; böylece Overleaf, paket dosyalarını bulmak için o dizinde arama yapması gerektiğini bilir.

Bunu yapmak için, bu paket dosyalarını adlı bir klasöre koyduğunuzu varsayalım `tex/`; ayrıca sırasıyla kaynakça stili dosyalarını adlı bir klasöre koyduğunuzu varsayalım `bst/`:

1. Proje kenar çubuğunun üst kısmındaki “Add file”a tıklayın.
2. “Blank file” seçin ve dosya adını şu şekilde kaydedin `latexmkrc` (eğer zaten orada değilse).
3. Aşağıdaki satırı şuraya koyun `latexmkrc`:

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

   (veya projenizdeki ilgili klasör adlarına göre değiştirin)

Overleaf artık şunu arayacaktır: `tex/` klasörünü önce, sistemde arama yapmadan önce `TEXINPUTS` paket dosyalarını bulmak için; ve `bst/` klasörünü önce, sistemde arama yapmadan önce `BSTINPUTS` kaynakça stili dosyalarını bulmak için.

(Kaynak: <http://tex.stackexchange.com/a/50847/226>)

**Not**: Ana belge dosyanız ve sizin `latexmkrc` dosyanız projenizin en üst düzeyinde kalmalıdır, bir klasörde değil.


---

# 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/tr/sorular-ve-cevaplar/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.
