It has been a bit quiet here for some weeks. I got a son in February, when my little daugher was not much more than 1 year old, both keep us pretty busy at home. So after my full time job I’m not so often at the computer.
However, I still post about TeX news, answer questions in TeX forums, edit and publish articles. My personal site is just not so important. I rather support LaTeX-Community.org, which is read by more people.
Here are some news of the last months I posted there, in case you missed one:
Contributed articles, which I edited regarding HTML design and published on that site:
More articles are in the works and will appear soon.
Do you like reading that TeX and LaTeX site with articles, news, and an active TeX forum? If yes, there are some ways you could support it, for example by
Yesterday I wrote a question on TeX.SE:
How can I explain the meaning of LaTeX to my grandma?
I wrote a book about LaTeX, and my proud grandma wanted to have a copy. So she got it, said “What a beautiful picture on the cover!” and - “What is this, LaTeX?”.
She doesn’t know Word, never used a computer. But she reads books. How can I explain what makes TeX and LaTeX special to a non-technical person?
There are already some answers. Perhaps you know eye-opening words? So I could also explain to my boss, why I request some days off to go to a TeX conference, to my daughter what daddy does on the computer, to my girlfriend with what I spend so much time. Possibly you know such situations.
Since today, LaTeX-Community.org readers can use an online LaTeX compiler in the forum, provided by writeLaTeX.com, an online collaborative LaTeX editor with integrated rapid preview.
By a single click on a link above a code box, the reader will land in the editor which shows the code on the left side, and the output preview on the right side. Compilation is done in realtime.
Now it’s easier to support LaTeX users, especially if they would add a compilable minimal example to their problem. Even small code snippets would be wrapped to create a basic LaTeX document.
For more information and examples, have a look at the announcement.
Happy New Year for all!
The animated GIF image shows fireworks displayed with TikZ written by Chris Hughes aka cmhughes on TeX.SE. Follow the link to see further fireworks effects.
The code is:
\documentclass[tikz]{standalone} \usepackage{tikz} \usetikzlibrary{decorations.pathmorphing,decorations.shapes} \begin{document} \foreach \radius in {1,2,...,20} { \begin{tikzpicture} % background rectangle \filldraw[black] (-3,-3) rectangle (5,3); % skyline \filldraw[black!80!blue](-3,-3)--(-3,-2)--(-2.5,-2)--(-2.5,-1)--(-2.25,-1)--(-2.25,-2)--(-2,-2) --(-2,-1)--(-1.75,-0.75)--(-1.5,-1) --(-1.5,-2)--(-1.1,-2)--(-1.1,0)--(-0.5,0)--(-0.5,-2) --(0,-2)--(0,-1.5)--(1,-1.5)--(1.25,-0.5)--(1.5,-1.5)--(1.5,-2) --(2,-2)--(2,0)--(2.5,0)--(2.5,-2) --(3,-2)--(3,-1)--(4,-1)--(4,-2)--(5,-2)--(5,-3)--cycle; % moon- what a hack! \filldraw[white] (4,2.5) arc (90:-90:20pt); \filldraw[black] (3.8,2.5) arc (90:-90:20pt); % fireworks \pgfmathparse{100-(\radius-1)*10}; % red firework \ifnum\radius<11 \draw[decorate,decoration={crosses},red!\pgfmathresult!black] (0,0) circle (\radius ex); \fi % orange firework \pgfmathparse{100-(\radius-6)*10}; \ifnum\radius>5 \ifnum\radius<16 \draw[decorate,decoration={crosses},orange!\pgfmathresult!black] (1,1) circle ( \radius ex-5ex); \fi \fi % yellow firework \pgfmathparse{100-(\radius-11)*10}; \ifnum\radius>10 \draw[decorate,decoration={crosses},yellow!\pgfmathresult!black] (2.5,1) circle (\radius ex-10ex); \fi \end{tikzpicture} } \end{document}The resulting PDF file can be cropped and converted using
pdfcrop myfile.pdf
convert -delay 20 -loop 0 -density 300 myfile-crop.pdf fireworks.gif
This Christmas tree has been written in LaTeX and TikZ by Alain Matthes. See the complete source code.