Hi everyone, I’ve include the code for drawing Dynkin diagrams using Tikz package in LaTeX \begin{center} \begin{tikzpicture}[scale=.4] \draw (-1,0) node[anchor=east] {$A_n$}; \foreach \x in {0,…,5} \draw[xshift=\x cm,thick] (\x cm,0) circle (.3cm); \draw[dotted,thick] (0.3 cm,0) — +(1.4 cm,0); \foreach \y in {1.15,…,4.15} \draw[xshift=\y cm,thick] (\y cm,0) — +(1.4 cm,0); \end{tikzpicture} \end{center} \begin{center} \begin{tikzpicture}[scale=.4] \draw (-1,0) node[anchor=east] [...]
Archive for the ‘Science’ Category
LaTeX Tip: Dynkin Diagrams using Tikz
Posted in LaTeX, Mathematics, Physics, Science, tagged Compilation, Diagram, Dynkin, Groups, LaTeX, Lie, lie group, Tikz, Tips and Tricks on April 2, 2012 | Leave a Comment »
Fluid Flows and Infinite-Dimensional Manifolds I
Posted in Science on March 12, 2012 | Leave a Comment »
Reblogged from Azimuth: Or: waves that take the shortest path through infinity guest post by Tim van Beek Water waves can do a lot of things that light waves cannot, like “breaking”: In mathematical models this difference shows up through the kind of partial differential equation (PDE) that models the waves: • light waves are [...]
The Education of a Scientist
Posted in Science on March 7, 2012 | Leave a Comment »
Reblogged from Azimuth: Why are scientists like me getting so worked up over Elsevier and other journal publishers? It must seem strange from the outside. This cartoon explains it very clearly. It’s hilarious—except that it’s TRUE!!! This is why we need a revolution. (It’s true except for one small thing: in math and physics, Elsevier [...]
A Noether Theorem for Markov Processes
Posted in Science on March 7, 2012 | Leave a Comment »
Reblogged from Azimuth: I’ll start you off with two puzzles. Their relevance should become clear by the end of this post: • Puzzle 1. Suppose I have a box of jewels. The average value of a jewel in the box is $10. I randomly pull one out of the box. What’s the probability that its [...]
LaTeX Tip: New name after compilation
Posted in LaTeX, Science, tagged CLI, Command, How to, HowTo, LaTeX, Line, Linux, Programming, Terminal, Tips and Tricks on March 2, 2012 | Leave a Comment »
If you want to compile a file, say Base.tex, and get the PDF with other name, use the -jobname option $ pdflatex -jobname MyBook Base.tex In the example you’ll get a PDF file called MyBook.pdf Enjoy