General ⇒ Block diagrams in latex
Block diagrams in latex
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Block diagrams in latex
[1] PSTricks examples
[2] PGF and TikZ examples gallery | fauskes.net
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Block diagrams in latex

It is possible that i need only to specify dependency between elements, not its position? Or big flowcharts automatic divided between pages?
Thanks!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Block diagrams in latex
[1] PSTricks / psmatrix
[2] PGF and TikZ examples gallery | fauskes.net - Page 3
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Block diagrams in latex
How i can create it?
Thanks!
Block diagrams in latex
All I can see in your linked figure is a non-regular hexagon that can be easily produced with both PSTricks and PGF/TikZ, Maybe your link was not correct?frey wrote:Pstricks are very usefull! But thete is no framed box for figure like this: http://upload.wikimedia.org/wikipedia/ru/f/ff/Loop.GIF
How i can create it?
Thanks!
Re: Block diagrams in latex
Re: Block diagrams in latex
\pspolygonbox[PolyNbSides=6]{text}
Block diagrams in latex

I make a flowchart with pspolygonbox and can't achieve right node connection with it, look like this:

Code: Select all
\begin{document}
\begin{frame}[shrink]
\psset{shadowcolor=black!70,blur=true}%
\frametitle{Ðлгоритм вычиÑÐ»ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð¿Ñ€Ð°Ð²Ð¾Ðº ÑкороÑти.}
\begin{center}
\begin{tabular}{p{2cm}c}
\begin{psmatrix}[rowsep=0.8,colsep=0.4]
% \begin{psmatrix}
& \\[-25pt]
& \rnode{N1}{\psovalbox[fillstyle=solid,fillcolor=yellow!30,shadow=true]{Ðачало}}\\[0pt]
[name=X1] & \\[-25pt]
& \rnode{N2}{\psframebox[fillstyle=solid,fillcolor=blue!30,shadow=true]{
\tabular{cccc}
some & long & text & here
\endtabular}}\\[0pt]
[name=X2] & \\[-25pt]
& \Rnode{N3}{\pspolygonbox[fillstyle=solid,fillcolor=green!30,shadow=true,PolyNbSides=6]{
\tabular{cc}
this & too
\endtabular}}\\[0pt]
[name=X3] & \\[-25pt]
& \rnode{N4}{\psframebox[fillstyle=solid,fillcolor=blue!30,shadow=true]{
\tabular{l}
and this
\endtabular}}\\[0pt]
Thanks!
Re: Block diagrams in latex
