> 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/69-in-the-ieee-for-journals-template-i-m-trying-to-use-bibtex-for-my-references.md).

# Nel modello IEEE for journals, sto cercando di usare bibtex per i miei riferimenti

Molti autori che utilizzano uno dei modelli di rivista IEEE chiedono aiuto per aggiungere i propri riferimenti utilizzando BibTeX. In particolare, dopo aver caricato i file IEEEexample.bib e IEEEabrv.bib nella cartella bibtex/bib, può essere difficile far compilare il documento. Ecco una raccolta delle nostre risposte che, si spera, ti sarà d'aiuto se ti trovi in una situazione simile, e che culminano in un esempio che puoi usare come modello per iniziare.

Prima di tutto, se hai caricato i file IEEEtran.cls e IEEEtran.bst, si consiglia di eliminarli, perché in realtà sono già inclusi in writeLaTeX—non è necessario includerli nel progetto, e di solito è meglio usare la versione integrata.

Se devi creare la cartella bibtex/bib, puoi farlo dal menu Project nell'editor—una volta aperto il menu, le icone per creare cartelle e file si trovano in alto a destra.

La bibliografia generata da BibTeX deriva dai comandi \bibliography e \bibliographystyle e, supponendo che tu stia usando i file IEEEexample.bib e IEEEabrv.bib nella cartella bibtex/bib, questi comandi dovrebbero essere modificati in:

```latex
\bibliography{bibtex/bib/IEEEabrv.bib,bibtex/bib/IEEEexample.bib}{}
\bibliographystyle{IEEEtran}
```

Questo dice a BibTeX di caricare i due file .bib e di usare lo stile bibliografico IEEEtran per formattare i riferimenti.

Nota: i comandi originali nel modello erano:

```latex
\bibliography{mybib.bib}{}
\bibliographystyle{plain}
```

che dicevano a BibTeX che si desidera usare un file chiamato mybib.bib per i riferimenti, con lo stile plain (integrato).

Infine, un errore comune che si verifica dopo aver impostato tutto questo è quando nel documento non c'è alcun comando \cite che faccia riferimento a una qualsiasi delle voci nel file bib. Nell'esempio seguente ne abbiamo aggiunto uno da IEEEexample.bib:

```latex
\cite{IEEEhowto:IEEEtranpage}
```

per farlo compilare. Dovrai eliminarlo una volta che avrai iniziato ad aggiungere le tue citazioni.

[Ecco l'esempio su Overleaf, pronto e configurato per l'uso.](https://www.overleaf.com/latex/templates/ieee-for-journals-template-with-bibtex-example-files-included/hjbyjvncdmpx)

Per ulteriori informazioni su BibTeX, consigliamo il Wikibook LaTeX \[[capitolo sulla gestione della bibliografia](http://en.wikibooks.org/wiki/LaTeX/Bibliography_Management)].


---

# 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/69-in-the-ieee-for-journals-template-i-m-trying-to-use-bibtex-for-my-references.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.
