2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
Examples for the usage of LaTeX
Find a file
Stefan Koch 8f0b025fca corrected SQL statement
- it's totally uneeded to join the FROM table once again
- I do not know about specifying multiple tables in one JOIN, it might be wrong, but at least it's (same as using CROSS JOIN syntax with multiple FROM tables) at least bad behaviour
- omitting the ON clause when using JOIN is afaik not optional in the SQL standard. MySQL allows it, but then uses CROSS JOIN. Here you either want NATURAL JOIN or JOIN with ON clause. I prefer JOIN with explicit ON clauses all the time (because I never call my columns Berater.berater_id, but Berater.id and in foreign key definitions then Foo.berater_id), but since in the lectures NATURAL JOIN was so often prefered, I thought about using that. In my own exam, I will always use ON clause, because I am more used to that and I will not run into troubles if there are two columns with the same name, which is exactly the problem here. There are two tables with column "name". The second NATURAL JOIN would fail, because it would try to not only JOIN Kunden2Berater.kunden_id with Kunden.kunden_id, but also Berater.name with Kunden.name.
Thus, I'd recommend to always use explicit ON statements.
2013-07-30 11:05:00 +02:00
cheat-sheets vim cheat sheet: added some commands 2013-04-16 18:00:50 +02:00
circuits added example for tikz circuit library 2013-01-19 10:21:32 +01:00
documents corrected SQL statement 2013-07-30 11:05:00 +02:00
images misc 2013-07-28 16:15:18 +02:00
math added compiled example 2013-07-02 15:49:34 +02:00
povray/ellipsoid added rectangle example 2012-09-07 22:21:55 +02:00
presentations fixed typo 2013-07-02 14:19:05 +02:00
pstricks added sphere sphere solution 2013-07-02 15:39:25 +02:00
source-code misc 2013-06-29 10:14:22 +02:00
tikz misc 2013-07-28 16:15:18 +02:00
uml/class-diagramm added math document examples 2012-08-13 19:22:43 +02:00
.gitignore added resource allocation graph 2013-03-06 13:25:42 +01:00
LICENSE added MIT license 2013-02-01 23:34:09 +01:00
README.md added csv2piechart example; corrected error in CFB mode decryption 2013-07-09 14:41:25 +02:00

LaTeX-examples

More than 200 examples for the usage of LaTeX (you can check that with the following command: find . -type d | sort | awk '$0 !~ last "/" {print last} {last=$0} END {print last}' | grep -v .git | wc -l)

Most examples can be found on my Wikpedia Commons user page

You might also be interested in my Blog

Usage

Every LaTeX file is in a seperate folder and has its own Makefile. So you can simply generate the PDF by typing "make" in the terminal.

Requirements

POV-Ray

Although POV-Ray has nothing to do with LaTeX, I decided to add some images here

Contact

If you have examples or suggestions for improving given examples, you send them to info@martin-thoma.de

Re-use

Feel free to use and modify the examples of this repository. But please add a link to this repository or martin-thoma.com

Other resources