Ticker

6/recent/ticker-posts

Draw Lines in Tikz LaTeX - Quick Answerz

Lines in Tikz \(\LaTeX\)

Line is one the basic geometric shape and can easily be created in Tikz \(\LaTeX\) and can enhanced visually by adding the color, lines styles to dashed, dotted, thick and ultra thick and adjusting opacity to colors.

\draw [parameter1, parameter2, parameter3,...] (a,b) -- (c,d) (K_unit) where:
  • \draw --- used to draw the shape;
  • [parameter1, parameter2, parameter3,...] --- parameters are the options separated by commas used to enhance the graphics of the shape
  • (a,b) and (c,d) --- coordinates of the line, (a,b) is the initial point and (c,d) is the final point
  • K_unit ---- K is some positive integer and unit is the measurement unit like, 5mm, 1in, 4cm, 6pt etc.

;
Line in Tikz Code in \(\LaTeX\) Result
Solid Line;
Black Color(default)
\begin{tikzpicture}
\draw (0,0) -- (4,0);
\end{tikzpicture}
Solid Line;
Violet Color
\begin{tikzpicture}
\draw [violet] (0,0) -- (2,0);
\end{tikzpicture}
Dashed Line;
Green Color
\begin{tikzpicture}
\draw [green, dashed] (0,0) -- (4,0);
\end{tikzpicture}
Thick Line;
Purple Color
\begin{tikzpicture}
\draw [purple, thick] (0,0) -- (4,0);
\end{tikzpicture}
Ultra Thick Line;
Blue Color with 40% opacity
\begin{tikzpicture}
\draw [blue!40, ultra thick] (0,0) -- (4,0);
\end{tikzpicture}
Dotted Line;
Blue Color
\begin{tikzpicture}
\draw [blue, dotted] (0,0) -- (4,0);
\end{tikzpicture}
Vertical Line;
Yellow Color
\begin{tikzpicture}
\draw [fill, yellow] (0,0) -- (0,2);
\end{tikzpicture}
Rotated Line at initial point;
red Color
\begin{tikzpicture}
\filldraw[red, rotate=30] (0,0) -- (2,0);
\end{tikzpicture}
Parallel Lines;
Blue and Green Color
\begin{tikzpicture}
\filldraw[blue] (0,0) -- (2,0);
\filldraw[green] (0,-1) -- (3,-1);
\end{tikzpicture}
Perpendicular Lines;
Red and Yellow Color
\begin{tikzpicture}
\filldraw[red] (0,0) -- (2,0);
\filldraw[yellow] (2,0) -- (2,2);
\end{tikzpicture}

Related Questions

  • Graphics in LaTeX using Tikz
  • How to draw line in tikz
  • How to draw colored line in tikz
  • How to draw dashed line in tikz
  • How to draw dotted line in tikz
  • How to draw gradient color line in tikz
  • How to draw different color line in tikz
  • How to draw thick line in tikz
  • How to draw ultra thick line in tikz
  • How do you make a line in TikZ?
  • How do you draw TikZ?
  • tikz draw line radius
  • tikz manual
  • tikz colors
  • How do you insert a line in latex?
  • How do you make a small line in latex?
  • Which command is used to draw a solid line?
  • latex black line
  • black filled line latex
  • latex line number
  • tikz line no line
  • how to color line in tikz latex

Post a Comment

0 Comments