von Beobachter » Mi 9. Dez 2015, 22:35
Solche Diagramme sind wesentlich einfacher und auch flexibler mit »
PGF/TikZ« zu erstellen. Sollte das Diagramm zu breit sein, hilft eine Anpassung der Maße. Ein Blick in die Anleitung schadet auch nicht.
\documentclass[11pt,border=2pt]{standalone}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\SelectInputMappings{
adieresis={ä},
germandbls={ß}
}
\usepackage[ngerman]{babel}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[>=stealth]
\node (at) at (0,0) {Angiotensinogen};
\node[right=5cm of at] (at-i) {Angiotensin I};
\draw[->] (at) -- (at-i) node[midway,above,font=\small] {Freisetzung von Renin};
\node[below=3cm of at-i] (at-ii) {Angiotensin II};
\draw[<-] (at-ii) -- (at-i) node[name=ace,midway,right,font=\small] {ACE};
\node[left=1cm of ace,font=\small] (ace-h) {ACE"=Hemmer};
\draw[->,shorten >=3pt] (ace-h) to[bend left] (ace);
\node[below left=2cm and 3cm of at-ii,text width=3cm] (eng) {Engstellung der Blutgefäße};
\node[below left=2cm and 1cm of at-ii] (adh) {ADH};
\node[below=2cm of at-ii] (durst) {Durst};
\node[below right=2cm and 1cm of at-ii,text width=3cm] (aldo) {Ausschüttung von Aldosteron};
\draw[<-] (eng) -- (at-ii) node[midway,above,sloped,font=\small] {Sartane};
\draw[->] (at-ii) -- (adh);
\draw[->] (at-ii) -- (durst);
\draw[->] (at-ii) -- (aldo);
\end{tikzpicture}
\end{document}
Ein auf »
PSTricks« basierendes Paket sollte ähnliche Möglichkeiten bieten.

Solche Diagramme sind wesentlich einfacher und auch flexibler mit »[url=http://ctan.org/pgf]PGF/Ti[i]k[/i]Z[/url]« zu erstellen. Sollte das Diagramm zu breit sein, hilft eine Anpassung der Maße. Ein Blick in die Anleitung schadet auch nicht.
[code]\documentclass[11pt,border=2pt]{standalone}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\SelectInputMappings{
adieresis={ä},
germandbls={ß}
}
\usepackage[ngerman]{babel}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[>=stealth]
\node (at) at (0,0) {Angiotensinogen};
\node[right=5cm of at] (at-i) {Angiotensin I};
\draw[->] (at) -- (at-i) node[midway,above,font=\small] {Freisetzung von Renin};
\node[below=3cm of at-i] (at-ii) {Angiotensin II};
\draw[<-] (at-ii) -- (at-i) node[name=ace,midway,right,font=\small] {ACE};
\node[left=1cm of ace,font=\small] (ace-h) {ACE"=Hemmer};
\draw[->,shorten >=3pt] (ace-h) to[bend left] (ace);
\node[below left=2cm and 3cm of at-ii,text width=3cm] (eng) {Engstellung der Blutgefäße};
\node[below left=2cm and 1cm of at-ii] (adh) {ADH};
\node[below=2cm of at-ii] (durst) {Durst};
\node[below right=2cm and 1cm of at-ii,text width=3cm] (aldo) {Ausschüttung von Aldosteron};
\draw[<-] (eng) -- (at-ii) node[midway,above,sloped,font=\small] {Sartane};
\draw[->] (at-ii) -- (adh);
\draw[->] (at-ii) -- (durst);
\draw[->] (at-ii) -- (aldo);
\end{tikzpicture}
\end{document}[/code]
Ein auf »[url=http://ctan.org/pkg/pstricks-base]PSTricks[/url]« basierendes Paket sollte ähnliche Möglichkeiten bieten.
[img]http://i.imgur.com/oGuPQxJ.png[/img]