Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Translate/italian #57

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
3 changes: 2 additions & 1 deletion Translation-Chinese.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
[Français](./Translation-French.md) ·
[Русский](./Translation-Russian.md) ·
[Deutsch](./Translation-German.md) ·
[日本語](./Translation-Japanese.md)
[日本語](./Translation-Japanese.md) ·
[Italiano](./Translation-Italian.md)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You seem to miss the dot here 😄 But it's ok, it's just nitpicks that will make the file look consistent.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's actually fine, dots are between words. So there should be no dot after the last one.

P.S. Probably a better formatting would be to move dots to the beginning of line (with no dot before the first word).


---

Expand Down
3 changes: 2 additions & 1 deletion Translation-French.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
Français ·
[Русский](./Translation-Russian.md) ·
[Deutsch](./Translation-German.md) ·
[日本語](./Translation-Japanese.md)
[日本語](./Translation-Japanese.md) ·
[Italiano](./Translation-Italian.md)

---

Expand Down
3 changes: 2 additions & 1 deletion Translation-German.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
[Français](./Translation-French.md) ·
[Русский](./Translation-Russian.md) ·
Deutsch ·
[日本語](./Translation-Japanese.md)
[日本語](./Translation-Japanese.md) ·
[Italiano](./Translation-Italian.md)

---

Expand Down
102 changes: 102 additions & 0 deletions Translation-Italian.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
[English](./readme.md) ·
[中文](./Translation-Chinese.md) ·
[Español](./Translation-Spanish.md) ·
[Português](./Translation-Portuguese.md) ·
[Français](./Translation-French.md) ·
[Русский](./Translation-Russian.md) ·
[Deutsch](./Translation-German.md) ·
[日本語](./Translation-Japanese.md) ·
Italiano

---

# LaTeX in pochi minuti

![](https://upload.wikimedia.org/wikipedia/commons/9/92/LaTeX_logo.svg)

**Riconoscimenti:** *Quanto scritto in questo documento deriva da mie esperienze universitarie e letture di diverso materiale sull'argomento. Non sono un professionista o un esperto ma un semplice studente con una passione per l'argomento. Chiunque può aprire una discussione nella sezione "Problemi" o aprire una Pull Request nel caso ritenga che qualcosa debba essere aggiunto o modificato. Se il mio lavoro vi è tornato utile una [donazione](#donation) è molto apprezzata.*

### Sommario

* [Che cos'è LaTeX?](#che-cos'è-latex)
Kastakin marked this conversation as resolved.
Show resolved Hide resolved
* [Perchè usare LaTeX?](#perchè-usare-latex)
* [Installare LaTeX](#installare-latex)
* [Il primo documento LaTeX](#il-primo-documento-latex)
* [Uno sguardo approfondito](#uno-sguardo-approfondito)
* [Supporto multilingue in LaTeX](#supporto-multilingue-latex)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one doesn't work, since it's lacking the 'in' word ;)

* [Liste](#liste)
* [Paragrafi e sezioni](#paragrafi-e-sezioni)
* [Generare un sommario](#generare-un-sommario)
* [Note](#note )
* [Cosa sono i pacchetti?](#cosa-sono-i-pacchetti)
* [Tabelle](#tabelle)
* [Aggiungere immagini](#aggiungere-immagini)
* [Inserire porzioni di codice in LaTeX](#inserire-porzioni-di-codice-in-latex)
* [Più file in LaTeX](#piu-file-in-LaTeX)
* [Strumenti Aggiuntivi](#strumenti-aggiuntivi)

## Che cos'è LaTeX?

LaTeX, la cui pronuncia corretta è «La-tek», è un sistema per comporre documenti di altà qualità. È spesso impiegato in documenti medio-grandi di carattere tecnico-scientifico ma è utilizzabile per qualunque tipo di pubblicazione.

## Perchè usare LaTeX?

* LaTeX è gratis e multipiattaforma.
* Un file LaTeX è un semplice documento di testo modificabile con un qualsiasi editor di testo per poi essere facilmente covertibileconvertito in PDF.
* LaTeX separa il contenuto dallo stile del documento. Formatta lo stile, poi concentrati sul contenuto.
* Esperienza di lavoro più fluida rispetto a MS Word.
* Largo impiego nell'ambito scientifico.
* LaTeX rappresenta l'opzione migliore se si vogliono rappresentare formule matematiche più o meno complesse.

> LaTeX non è esente da svantaggi ma, viste i grandi vantaggi che il suo uso permette di ottenere, saperci lavorare è comunque utile.

## Installare LaTeX

Avrai bisogno di:

1. *Distribuzione LaTeX*
Personalmente uso [MiKTeX](https://miktex.org/about) per Windows.
2. *LaTeX Editor.*
Io utilizzo [TeXMaker](http://www.xm1math.net/texmaker/) per la facilità di editing, ricorda che in realtà un qualunque editor di testo può creare o modificare un file LaTeX.
3. *Visualizzatore di PDF* (opzionale)
Va bene di qualunque tipo, servirà a vedere il risultato del tuo lavoro.

È inoltre necessario scegliere un [compilatore](#strumenti-aggiuntivi). Il compilatore di default per la maggior parte degli editor è pdfLaTeX, nel caso sia necessario il support per caratteri TTF/OTF o Unicode utilizzare invece LuaLaTeX.

Un alternativa è l'uso di soluzioni online come [ShareLaTeX](https://www.sharelatex.com/).
Consultare la sezione [Strumenti aggiuntivi](#strumenti-aggiuntivi) per una grande varietà di alternative.

## Il primo documento LaTeX

Iniziamo con il più tradizionale degli **Hello World** in **LaTeX**.
Se hai installato **TexMaker** per prima cosa crea un nuovo file con estensione `.tex`. Inserisci quindi il codice qui sotto riportato, clicca poi su "quick build" per ottenere il tuo "Hello World!". Nel caso tu stia utilizzando un differente editor la procedura dovrebbe essere piuttosto simile.

```tex
\documentclass[a4paper]{article}

\begin{document}

Hello World ! % This is your content

\end{document}
```

Il risultato dovrebbe apparire così in TexMaker:
![](http://i.imgur.com/ZuD5N6U.png)

## Uno sguardo approfondito

:eyes: Guardando più da vicino il file LaTeX appena creato puoi notare:

* La prima linea di codice che comunica al programma che il documento su cui stiamo lavorando è di tipo **articolo** su foglio A4. È possibile utilizzare altri tipi di documenti come ad esempio **report** e **book**.
* La definizione del documento tra le due linee di codice **\begin{document}** e **\end{document}**. Questo è il "cuore" del documento, come il `main()` in *java* o *C++*... Senza di questo il documento non può essere convertito in PDF.
* La spazio tra begin ed end (nel nostro caso contenente soltanto `Hello World`) dove è presente il contenuto del documento da noi inserito.
* Un **segno percentuale** (%) denota un commento che LaTeX ignorerà non riportandolo nel documento in PDF finale.

#### :zap: Attenzione :zap:

* Soffermiamoci ancora sulle porzioni di codice **\begin{document}**, **\end{document}**, **\documentclass[a4paper]{article}**. Puoi notare come ci sia una sorta di pattern: in essi si possono riconoscere i **Comandi di Typesetting** (introdotti dal simbolo "\\") e i loro **Argomenti** (posizionati tra parentesi graffe {}). Un documento LaTeX non è altro che un comune documento di testo arricchito da questi comandi.
* Seguendo questa guida non dovresti incontrare particolari problemi. Nel futuro però potresti imbatterti in qualche difficoltà, **niente panico**. Gli errori riportati da LaTeX sono tendenzialmente di facile interpretazione e scritti in un linguaggio comprensibile. Se non riesci a risolverli prova a copiare ed incollare il messaggio d'errore su Google!
* Alcuni caratteri sono **designati a comandi speciali in LaTeX. Potrebbe essere necessario utilizzare un backslash (\\) per poterli visualizzare.**

![](http://i.imgur.com/9d0bXHH.png)
3 changes: 2 additions & 1 deletion Translation-Japanese.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
[Français](./Translation-French.md) ·
[Русский](./Translation-Russian.md) ·
[Deutsch](./Translation-German.md) ·
日本語
日本語 ·
Kastakin marked this conversation as resolved.
Show resolved Hide resolved
[Italiano](./Translation-Italian.md)

---

Expand Down
3 changes: 2 additions & 1 deletion Translation-Portuguese.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Português ·
[Français](./Translation-French.md) ·
[Русский](./Translation-Russian.md) ·
[Deutsch](./Translation-German.md) ·
[日本語](./Translation-Japanese.md)
[日本語](./Translation-Japanese.md) ·
[Italiano](./Translation-Italian.md)

---

Expand Down
3 changes: 2 additions & 1 deletion Translation-Russian.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
[Français](./Translation-French.md) ·
Русский ·
[Deutsch](./Translation-German.md) ·
[日本語](./Translation-Japanese.md)
[日本語](./Translation-Japanese.md) ·
[Italiano](./Translation-Italian.md)

---

Expand Down
3 changes: 2 additions & 1 deletion Translation-Spanish.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Español ·
[Français](./Translation-French.md) ·
[Русский](./Translation-Russian.md) ·
[Deutsch](./Translation-German.md) ·
[日本語](./Translation-Japanese.md)
[日本語](./Translation-Japanese.md) ·
[Italiano](./Translation-Italian.md)

---

Expand Down
5 changes: 3 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ English ·
[Français](./Translation-French.md) ·
[Русский](./Translation-Russian.md) ·
[Deutsch](./Translation-German.md) ·
[日本語](./Translation-Japanese.md)
[日本語](./Translation-Japanese.md) ·
[Italiano](./Translation-Italian.md)

---

Expand Down Expand Up @@ -99,7 +100,7 @@ It should look like this in TexMaker:
* While you are following this guide, everything will work smoothly. However, in the future, should there be any problems, **don't panic**. The error reports are human-friendly and readable. If you can't resolve them, a search tool like Google may be your best friend.
* Some characters are **predefined with special meanings in LaTeX. You may want to use backslashes (\\) in front of these characters for proper output.**

![](http://i.imgur.com/9d0bXHH.png)
![](http://i.imgur.com/9d0bXHH.png)

## Multilingual usage

Expand Down