Advertisement
Guest User

Untitled

a guest
May 4th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. documentclass{scrreprt}
  2. usepackage{amsmath,bm}
  3. usepackage{tikz}
  4. usetikzlibrary{arrows,matrix,positioning}
  5.  
  6. begin{document}
  7. begin{equation}
  8. bm{Bu}=
  9. begin{tikzpicture}[baseline={([yshift=-.5ex]current bounding box.center)},vertex/.style={anchor=base,
  10. circle,fill=black!25,minimum size=18pt,inner sep=2pt}]
  11. matrix [matrix of math nodes,left delimiter={[},right delimiter={]}] (m)
  12. {
  13. 0 & 0 & 0 & 0 \
  14. 0 & 0 & 0 & 0 \
  15. 0 & 0 & 0 & 0 \
  16. 0 & 0 & 0 & 0 \
  17. times & times & times & times \
  18. times & times & times & times \
  19. times & times & times & times \
  20. times & times & times & times \
  21. };
  22. draw[color=red] (m-1-3.north west) -- (m-1-3.north east) -- (m-8-3.south east) -- (m-8-3.south west) -- (m-1-3.north west);
  23. end{tikzpicture}
  24. begin{tikzpicture}[baseline={([yshift=-.5ex]current bounding box.center)},vertex/.style={anchor=base,
  25. circle,fill=black!25,minimum size=18pt,inner sep=2pt}]
  26. matrix [matrix of math nodes,left delimiter=(,right delimiter=)] (m)
  27. {
  28. 0 \
  29. 0 \
  30. times \
  31. 0 \
  32. };
  33. draw[color=red] (m-3-1.north west) -- (m-3-1.north east) -- (m-3-1.south east) -- (m-3-1.south west) -- (m-3-1.north west);
  34. end{tikzpicture}
  35. begin{tikzpicture}
  36. draw [thick, black,decorate,decoration={brace,amplitude=10pt,mirror},xshift=0.4pt,yshift=-0.4pt](0,10) -- (10,10) node[black,midway,yshift=-0.6cm] {footnotesize $Form aus der\Literatur$};
  37. end{tikzpicture}
  38. =
  39. underbrace{
  40. begin{pmatrix}
  41. 0 \ 0 \ 0 \ 0 \ times \ times \ times \ times
  42. end{pmatrix}
  43. times}_{substack{text{Ausgabe aus} \ text{Simpack}}}
  44. label{eq:problem-state}
  45. end{equation}
  46. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement