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

TikZ
Quando eu dou de comer aos pobres
Me chamam de santo
Quando eu pergunto por que eles são pobres
Me chamam de comunista
Dom Helder Câmera
< 3D | LATEX V: TikZ | Diagrams >

Desenhando com LATEX

  1. PGF/TikZ:
    Pair of languages for producing vector graphics
    https://en.wikipedia.org/wiki/PGF/TikZ
  2. \begin{tikzpicture}
    [
       %Remember we are vectorial...
       scale=2,%scales fonts...
       xscale=2,yscale=3,   
       trig format=rad,%Angles in radians - may break features in tkz-euclide!?
    ]
        ...
    \end{tikzpicture}
  3. \def\checkmark{
       \tikz\fill[scale=0.4]
       (0,.35) -- (.25,0) -- (1,.7) -- (.25,.15)
       -- cycle;
    }
  4. Drawing on formulas:
    TiKZ Listing: Fig.tikz.tex. PDF   PNG   SVG   ZIP*  
    \documentclass{standalone}
    
    \usepackage{tikz}
    
    
    \begin{document}
       \begin{tikzpicture}
          \node[anchor=south west] at (0,0)
          {$
             \left(\begin{array}{cccccc}
               a_{11}&a_{12}&\cdots&a_{1j}&\cdots&a_{1n}\\
               a_{21}&a_{22}&\cdots&a_{2j}&\cdots&a_{1n}\\
               \vdots&\vdots&&\vdots&&\vdots\\
               a_{i1}&a_{i2}&\cdots&a_{ij}&\cdots&a_{in}\\
               \vdots&\vdots&&\vdots&&\vdots\\
               a_{m1}&a_{m2}&\cdots&a_{mj}&\cdots&a_{mn}\\
             \end{array}\right)
          $};
          
          \tikzmath{\xxi=3.55;}
          \tikzmath{\yyi=1.425;}
          
          \draw (0.6,\yyi) -- (5.5,\yyi);
          \draw (\xxi,0.1) -- (\xxi,3.1);
       \end{tikzpicture}
    \end{document}
    
2_Palestras/2023/01_PyTikZ/03_TikZ/01_TikZ/Taylor/Fig-001.svg
< 3D | LATEX V: TikZ | Diagrams >
Messages:
0 secs.