Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. Needs["SciDraw`"]
  2.  
  3. Figure[
  4. {Multipanel[
  5. {
  6. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 1}];
  7. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 2}];
  8. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 3}];
  9. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {2, 1}];
  10. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {2, 2}];
  11. FigurePanel[{
  12. Multipanel[{
  13. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 1},
  14. XShowTickLabels -> True];
  15. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 2}];
  16. },
  17. Dimensions -> {1, 2},
  18. XPanelGaps -> .1
  19. ];
  20. },
  21. {2, 3},
  22. Frame -> False
  23. ];
  24. },
  25. Dimensions -> {2, 3},
  26. XPanelGaps -> .1,
  27. YPanelGaps -> .1
  28. ];
  29. },
  30. CanvasSize -> {5, 3.5}
  31. ]
  32.  
  33. Figure[
  34. {Multipanel[
  35. {
  36. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 1}];
  37. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 2}];
  38. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 3}];
  39. },
  40. Dimensions -> {1, 3},
  41. XPanelGaps -> .1,
  42. PanelRegion -> Scaled[{{0, 1}, {0.55, 1}}]
  43. ];
  44. Multipanel[{
  45. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 1}];
  46. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 2}];
  47. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 3}];
  48. FigurePanel[{FigGraphics[Plot[x, {x, 0, 1}]]}, {1, 4}];
  49. },
  50. Dimensions -> {1, 4},
  51. XPanelGaps -> {.13, 0.13, 0.07},
  52. XPanelSizes -> {4/3, 4/3, 1, 0.3},
  53. PanelRegion -> Scaled[{{0, 1}, {0, 0.45}}]
  54. ];
  55. },
  56. CanvasSize -> {5, 3.5}
  57. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement