> 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/el/erotiseis-and-apantiseis/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. Κάντε κλικ στο «Add file» στην κορυφή της πλαϊνής γραμμής του Project.
2. Επιλέξτε «Blank file» και αποθηκεύστε το όνομα του αρχείου ως `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/el/erotiseis-and-apantiseis/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.
