Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{tikz}
  3. usetikzlibrary{decorations}
  4. begin{document}
  5.  
  6. pgfdeclaredecoration{discontinuity}{start}{
  7. state{start}[width=0.5pgfdecoratedinputsegmentremainingdistance-0.5pgfdecorationsegmentlength,next state=first wave]{}
  8. state{first wave}[width=pgfdecorationsegmentlength, next state=second wave]
  9. {
  10. pgfpathlineto{pgfpointorigin}
  11. pgfpathmoveto{pgfqpoint{0pt}{pgfdecorationsegmentamplitude}}
  12. pgfpathcurveto
  13. {pgfpoint{-0.25*pgfmetadecorationsegmentlength}{0.75pgfdecorationsegmentamplitude}}
  14. {pgfpoint{-0.25*pgfmetadecorationsegmentlength}{0.25pgfdecorationsegmentamplitude}}
  15. {pgfpoint{0pt}{0pt}}
  16. pgfpathcurveto
  17. {pgfpoint{0.25*pgfmetadecorationsegmentlength}{-0.25pgfdecorationsegmentamplitude}}
  18. {pgfpoint{0.25*pgfmetadecorationsegmentlength}{-0.75pgfdecorationsegmentamplitude}}
  19. {pgfpoint{0pt}{-pgfdecorationsegmentamplitude}}
  20. }
  21. state{second wave}[width=0pt, next state=do nothing]
  22. {
  23. pgfpathmoveto{pgfqpoint{0pt}{pgfdecorationsegmentamplitude}}
  24. pgfpathcurveto
  25. {pgfpoint{-0.25*pgfmetadecorationsegmentlength}{0.75pgfdecorationsegmentamplitude}}
  26. {pgfpoint{-0.25*pgfmetadecorationsegmentlength}{0.25pgfdecorationsegmentamplitude}}
  27. {pgfpoint{0pt}{0pt}}
  28. pgfpathcurveto
  29. {pgfpoint{0.25*pgfmetadecorationsegmentlength}{-0.25pgfdecorationsegmentamplitude}}
  30. {pgfpoint{0.25*pgfmetadecorationsegmentlength}{-0.75pgfdecorationsegmentamplitude}}
  31. {pgfpoint{0pt}{-pgfdecorationsegmentamplitude}}
  32. pgfpathmoveto{pgfpointorigin}
  33. }
  34. state{do nothing}[width=pgfdecorationsegmentlength,next state=do nothing]{
  35. pgfpathlineto{pgfpointdecoratedinputsegmentlast}
  36. }
  37. state{final}
  38. {
  39. pgfpathlineto{pgfpointdecoratedpathlast}
  40. }
  41. }
  42.  
  43. begin{tikzpicture}
  44. node[](S0){includegraphics[width=.12textwidth]{./_Images/Latex.png}};
  45. node[above right = 26mm and 18mm of S0](S1){includegraphics[width=.12textwidth]{./_Images/Latex.png}};
  46.  
  47. defmyshift#1{raisebox{1ex}}
  48. draw [decoration={discontinuity,amplitude=0.5cm,segment length=0.25cm,meta-segment length=0.5cm},decorate,<->,dotted,ultra thick,postaction={decorate,decoration={discontinuity,amplitude=0.5cm,segment length=0.25cm,meta-segment length=0.5cm,text along path,text align=center,text={|sffamilymyshift|TEXTTEXT}}}](S0) -- (S1);
  49. end{tikzpicture}
  50. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement