> 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/it/domande-e-risposte/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).

# Ho molti file .cls, .sty, .bst e voglio inserirli in una cartella per mantenere il progetto ordinato. Ma il mio progetto non li trova per compilare correttamente

La buona notizia è che possiamo specificare directory personalizzate `TEXINPUTS` directory utilizzando il `latexmkrc` file, così che Overleaf sappia di dover cercare in quella directory i file del pacchetto.

Per fare ciò, supponiamo che tu abbia messo questi file del pacchetto in una cartella chiamata `tex/`; e, rispettivamente, i file di stile bibliografico in una cartella chiamata `bst/`:

1. Fai clic su “Aggiungi file” in alto nella barra laterale del Progetto.
2. Seleziona “File vuoto” e salva il nome del file come `latexmkrc` (se non è già presente).
3. Inserisci la seguente riga in `latexmkrc`:

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

   (oppure modifica i nomi delle cartelle pertinenti nel tuo progetto)

Overleaf cercherà ora nella `tex/` cartella per prima, prima di cercare nel sistema `TEXINPUTS` per individuare i file del pacchetto, e `bst/` cartella per prima, prima di cercare nel sistema `BSTINPUTS` per individuare i file di stile bibliografico.

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

**Nota**: Il tuo file del documento principale e il tuo `latexmkrc` file devono rimanere al livello superiore del tuo progetto, non in una cartella.


---

# 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/it/domande-e-risposte/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.
