SmtC: Show me the Code
Ole Peter Smith
Instituto de Matemática e Estatística
Universidade Federal de Goiás
http://www.olesmith.com.br

Scripting Python, $\LaTeX$/TikZ
Uma sociedade sera - sempre - avaliado
Pelo jeito que trata seus mais fracos.
Mahatma

TikZ: A $\LaTeX$ Environment

  1. Vectorial, Scalable, Text - Scriptable!!
  2. Math Drawing Commands
  3. Flowcharts - Diagrams
  4. Calculations
  5. Programming: Turing Complete
  6. Geometrical Constructions
  7. Generates PDF and EPDF (hehehhe)
    Encapsulated PDF

    PDF should be Imageable!!

  8. pdf2svg: Software Livre
  9. Styles - better than CSS
  10. In $\LaTeX$:
    \begin{tikzpicture}
       \input{Fig.tex}
    \end{tikzpicture}
    Or:
    \includegraphics{Fig.pdf}
    TiKZ Listing: Fig.tikz.tex. PDF   PNG   SVG   ZIP*  
    \documentclass{standalone}
    
    \usepackage{tikz}
    
    \begin{document}
     \begin{tikzpicture}
        %Put your drawings here
        %...
        
        %color one half of a unit circle
        \begin{scope}
           \clip (0,0) circle (1cm);
           \fill[black] (0cm,1cm) rectangle (-1cm, -1cm);
        \end{scope}
    
        %fill heads
        \fill[white] (0,0.5) circle (0.5cm);
        \fill[black] (0,-0.5) circle (0.5cm);
    
        %fill eyes
        \fill[black] (0,0.5) circle (0.1cm);
        \fill[white] (0,-0.5) circle (0.1cm);
    
        %outer circle
        \draw (0,0) circle (1cm);
    
        
     \end{tikzpicture}
    \end{document}
    
Taylor's Formula for Planar Curves \[ \underline{r}(t) \simeq \underline{r}(t_0) + (t-t_0) \underline{r}'(t_0) + \frac{1}{2}(t-t_0)^2 \underline{r}''(t_0) \]
Carousel Animation: TikZ --> PDF --> SVG
Messages:
0 secs.