Graphics, Figures & Tables ⇒ draw image of functions in horizontal
-
- Posts: 26
- Joined: Tue Feb 28, 2012 2:31 pm
Re: draw image of functions in horizontal
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- Posts: 26
- Joined: Tue Feb 28, 2012 2:31 pm
Re: draw image of functions in horizontal
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: draw image of functions in horizontal
-
- Posts: 26
- Joined: Tue Feb 28, 2012 2:31 pm
Re: draw image of functions in horizontal
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**arrow_for_two_images.tex
(./arrow_for_two_images.tex
LaTeX2e <2011/06/27>
Babel <3.9f> and hyphenation patterns for 2 languages loaded.
(/usr/share/texlive/texmf-dist/tex/latex/amscls/amsart.cls
Document Class: amsart 2009/07/02 v2.20.1
\linespacing=\dimen102
\normalparindent=\dimen103
\normaltopskip=\skip41
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2013/01/14 v2.14 AMS math features
\@mathmargin=\skip42
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
draw image of functions in horizontal
Manually installing the package might be hard as well, as it requires a pretty recent LaTeX3 kernel.
You last resort would be to remove the debian TL and install a vanilla TeX Live from TUG directly.
-
- Posts: 26
- Joined: Tue Feb 28, 2012 2:31 pm
Re: draw image of functions in horizontal

- Stefan Kottwitz
- Site Admin
- Posts: 10330
- Joined: Mon Mar 10, 2008 9:44 pm
draw image of functions in horizontal
Code: Select all
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (0,-2)
to [out=180, in=270] (-1.5,-1)
to [out= 90, in= 30] (-2,0)
to [out=210, in=270] (-3,1)
to [out= 90, in=180] (0,1)
to [out= 0, in= 10] (1,0)
to [out=190, in= 0] (0,-2);
\end{tikzpicture}
\end{document}