Compare commits
2 Commits
9a99c0aee9
...
f206d75505
| Author | SHA1 | Date | |
|---|---|---|---|
| f206d75505 | |||
| d9238159dd |
35
README.md
35
README.md
@ -1,6 +1,6 @@
|
|||||||
# LaTeX Script by Fachschaft WIAI
|
# LaTeX Script by Fachschaft WIAI
|
||||||
|
|
||||||
This script introduces the most fundamental LaTeX mechanisms to get learners started. It is used both as a reference and as exercise material for our [LaTeX workshop](https://wiai.stuve-bamberg.de/latex-weekend), a **two-day tutorial aimed at students from various backgrounds**. The following topics are covered:
|
The material contained in this repository introduces the most fundamental LaTeX mechanisms to get learners started. It comprises both a script and hands-on exercises for our [LaTeX workshop](https://wiai.stuve-bamberg.de/latex-weekend), a **LaTeX introduction aimed at students from various backgrounds**. The following topics are covered:
|
||||||
|
|
||||||
* general introduction to the LaTeX system
|
* general introduction to the LaTeX system
|
||||||
* basic document structure
|
* basic document structure
|
||||||
@ -10,14 +10,14 @@ This script introduces the most fundamental LaTeX mechanisms to get learners sta
|
|||||||
* formatting paragraphs
|
* formatting paragraphs
|
||||||
* lists
|
* lists
|
||||||
* maths and formulas
|
* maths and formulas
|
||||||
* source code listings (`minted` + `listings`)
|
* source code listings (`listings` with an optional `minted` part)
|
||||||
* graphics
|
* graphics
|
||||||
* tables
|
* tables
|
||||||
* footnotes
|
* footnotes
|
||||||
* references
|
* references
|
||||||
* literature management
|
* literature management
|
||||||
|
|
||||||
Most chapters contain exercises to be performed within the script itself, practically teaching the aspects that are introduced by the text.
|
Most chapters contain exercises to practically apply the aspects that are introduced by the text.
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
@ -64,28 +64,45 @@ latex-script/
|
|||||||
│ ├── basic-document-structure
|
│ ├── basic-document-structure
|
||||||
│ ├── footnotes
|
│ ├── footnotes
|
||||||
│ └── …
|
│ └── …
|
||||||
|
├── first-steps-with-latex.tex
|
||||||
├── graphics
|
├── graphics
|
||||||
│ ├── benzene-ring.pdf
|
│ ├── benzene-ring.pdf
|
||||||
│ ├── cc-by-sa.png
|
│ ├── cc-by-sa.png
|
||||||
│ └── …
|
│ └── …
|
||||||
|
├── imprint.tex
|
||||||
|
├── LICENSE
|
||||||
├── listings
|
├── listings
|
||||||
│ ├── basic-document-structure
|
│ ├── basic-document-structure
|
||||||
│ ├── formatting-paragraphs
|
│ ├── formatting-paragraphs
|
||||||
│ └── …
|
│ └── …
|
||||||
├── main.tex
|
├── main-exercises.tex
|
||||||
|
├── main-script.tex
|
||||||
|
├── main-solutions.tex
|
||||||
├── Makefile
|
├── Makefile
|
||||||
├── praeamble.tex
|
├── praeamble.tex
|
||||||
├── public
|
├── public
|
||||||
├── setup.tex
|
├── setup.tex
|
||||||
└── README.md
|
├── README.md
|
||||||
|
├── titlepage-exercises.tex
|
||||||
|
└── titlepage.tex
|
||||||
```
|
```
|
||||||
|
|
||||||
## Relevant files for learners
|
## Relevant files for learners
|
||||||
* **`main.tex`** is the entry point. It includes the preamble (`preamble.tex`), our custom commands (`commands.tex`) as well as all sections.
|
|
||||||
* **`content`** comprises the individual chapters of this script.
|
|
||||||
* Most chapters include a task that can be found in the **`exercises`** folder.
|
|
||||||
|
|
||||||
Please don't feel overwhelmed by the amount of files in this repository. You will get to know the most important parts of the project step by step by [following the script](https://github.com/fs-wiai/latex-script/releases) or our workshop. What's more, by using this larger projects you get accustomed to the complexity of real LaTeX projects – bachelor's/master's theses and the like.
|
In this repository, we provide an exercise script in which you can practically apply what you have learned. These files will be needed:
|
||||||
|
|
||||||
|
* **`main-exercises.tex`** is the entry point for the exercise part. It includes the preamble (`preamble.tex`), our custom commands (`commands.tex`) as well as all sections.
|
||||||
|
* **`exercises`** contains one sub-folder for each chapter. Within these folders, there are the LaTeX files you will have to modify to complete an exercise.
|
||||||
|
|
||||||
|
## Additional material
|
||||||
|
|
||||||
|
Besides the exercise part, we also provide the script detailing all of the information we give you during our workshop. This script can be used as a reference, a refresher, and a source of inspiration. Moreover, it is a practical example of how LaTeX can be brought to good use. This is why we offer you the full source code, structured like this:
|
||||||
|
|
||||||
|
* The **`content`** folder comprises the individual chapters of the script.
|
||||||
|
* They are bound together by **`main-script.tex`**, which also includes our preamble (`preamble.tex`) and our custom commands (`commands.tex`).
|
||||||
|
* Further folders (e.g., `listings` and `graphics`) contain additional resources like images and source code listings used in the script.
|
||||||
|
|
||||||
|
Please don't feel overwhelmed by the amount of files in this repository. You will get to know the most important parts of the project step by step by [following the script](https://github.com/fs-wiai/latex-script/releases) or our workshop. What's more, by using this larger project you get accustomed to the complexity of real LaTeX projects – bachelor's/master's theses and the like.
|
||||||
|
|
||||||
## Further information for maintainers
|
## Further information for maintainers
|
||||||
|
|
||||||
|
|||||||
BIN
graphics/cover-exercises.pdf
Normal file
BIN
graphics/cover-exercises.pdf
Normal file
Binary file not shown.
BIN
graphics/cover-script.pdf
Executable file
BIN
graphics/cover-script.pdf
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -14,7 +14,7 @@
|
|||||||
\renewcommand{\thesubsection}{\arabic{subsection}}
|
\renewcommand{\thesubsection}{\arabic{subsection}}
|
||||||
|
|
||||||
% Title page
|
% Title page
|
||||||
\input{titlepage.tex}
|
\input{titlepage-exercises.tex}
|
||||||
% or simply
|
% or simply
|
||||||
% \maketitle
|
% \maketitle
|
||||||
\thispagestyle{empty}
|
\thispagestyle{empty}
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
\title{Script for the Fachschaft \acro{WIAI} \LaTeX{} Workshop}
|
\title{Script for the Fachschaft \acro{WIAI} \LaTeX{} Workshop}
|
||||||
\author{Evelyn Fradtschuk \and Florian Knoch \and Christian Kremitzl \and Bernhard Luedtke}
|
\author{Evelyn Fradtschuk \and Florian Knoch \and Christian Kremitzl \and Bernhard Luedtke}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\selectlanguage{english}
|
\selectlanguage{english}
|
||||||
\frenchspacing
|
\frenchspacing
|
||||||
@ -14,7 +14,7 @@
|
|||||||
\renewcommand{\thesubsection}{\arabic{subsection}}
|
\renewcommand{\thesubsection}{\arabic{subsection}}
|
||||||
|
|
||||||
% Title page
|
% Title page
|
||||||
\input{titlepage.tex}
|
\input{titlepage-exercises.tex}
|
||||||
% or simply
|
% or simply
|
||||||
% \maketitle
|
% \maketitle
|
||||||
\thispagestyle{empty}
|
\thispagestyle{empty}
|
||||||
|
|||||||
7
titlepage-exercises.tex
Normal file
7
titlepage-exercises.tex
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
\thispagestyle{empty}
|
||||||
|
|
||||||
|
\includepdf{graphics/cover-exercises.pdf}
|
||||||
|
|
||||||
|
\todo{Adjust cover for different versions.}
|
||||||
|
|
||||||
|
\input{imprint}
|
||||||
@ -1,6 +1,6 @@
|
|||||||
\thispagestyle{empty}
|
\thispagestyle{empty}
|
||||||
|
|
||||||
\includepdf{graphics/cover.pdf}
|
\includepdf{graphics/cover-script.pdf}
|
||||||
|
|
||||||
\todo{Adjust cover for different versions.}
|
\todo{Adjust cover for different versions.}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user