Graphics, Figures & Tables ⇒ Suggestions for Drawing Tools
-
- Posts: 6
- Joined: Sat Jan 26, 2008 12:06 am
Suggestions for Drawing Tools
Can anyone guide me on choices? I have read about MetaPost but am unsure how to determine whether my use of TeXnic Center and MikTex place any limits on what I might choose for this work. Thanks.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Suggestions for Drawing Tools
welcome to this board!
If you want to create the pictures inside yor LaTeX documents I recommend pgf/TikZ, have a look at the manual.
There's a very good example collection by Kjell Magne Fauske, have a look at the gallery.
PSTricks is another possibility.
You could also use an external drawing program, export the pictures as pdf files and import those pdf files into your document by \includegraphics.
Stefan
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Suggestions for Drawing Tools
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 6
- Joined: Sat Jan 26, 2008 12:06 am
Re: Suggestions for Drawing Tools
Thanks very much for the timely replies and kind welcome to the board. The pgf manual looks very impressive. I think I will try that route.
Tom
-
- Posts: 7
- Joined: Sun Jan 28, 2007 1:18 pm
Suggestions for Drawing Tools
cert1.tex is listed below
Code: Select all
\documentclass{article}%
\usepackage{pstricks}
\begin{document}
\newpsobject{showgrid}{psgrid}{subgriddiv=1,griddots=10,gridlabels=6pt}
\begin{pspicture}(0,0)(4.2,6.2)\showgrid
\pstextpath[c]
\pscurve(0,2)(2,4)(4,2)
{Centered text}
\end{pspicture}
\end{document}
Code: Select all
This is pdfTeX, Version 3.141592-1.40.4 (MiKTeX 2.7)
entering extended mode
(cert1.tex
LaTeX2e <2005/12/01>
Babel <v3.8h> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman, ngerman, french, loaded.
("I:\Program Files\MiKTeX 2.7A\tex\latex\base\article.cls"
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
("I:\Program Files\MiKTeX 2.7A\tex\latex\base\size10.clo"))
("I:\Program Files\MiKTeX 2.7A\tex\latex\pstricks\pstricks.sty"
("I:\Program Files\MiKTeX 2.7A\tex\generic\pstricks\pstricks.tex"
`PSTricks' v1.20 <2008/01/01> (tvz)
("I:\Program Files\MiKTeX 2.7A\tex\generic\pstricks\pstricks.con"))
("I:\Program Files\MiKTeX 2.7A\tex\latex\xcolor\xcolor.sty"
("I:\Program Files\MiKTeX 2.7A\tex\latex\00miktex\color.cfg")
("I:\Program Files\MiKTeX 2.7A\tex\latex\graphics\dvips.def"))) (cert1.aux)
! Undefined control sequence.
<recently read> \pstextpath
l.8 \pstextpath
[c]
? No pages of output.
Transcript written on cert1.log.
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Suggestions for Drawing Tools
use the pst-text package:
Code: Select all
\usepackage{pst-text}
Stefan