Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. documentclass{standalone}
  2. usepackage[utf8]{inputenc}
  3. usepackage{graphicx}
  4. usepackage{floatrow}
  5. usepackage{tikz}
  6. usepackage{pgfplots}
  7. usepackage{fixltx2e}
  8. usepackage{siunitx}
  9. usepackage{lscape}
  10. usepackage{diagbox}
  11. usepackage{caption}
  12. usepackage{xcolor}
  13. usepackage[version=4]{mhchem}
  14. usepackage{subcaption}
  15. usepgfplotslibrary{groupplots}
  16. DeclareSIUnit{molar}{M}
  17. pgfplotsset{compat=newest}
  18.  
  19.  
  20.  
  21. begin{document}
  22.  
  23. begin{figure}[h]
  24. setlength{abovecaptionskip}{15pt plus 3pt minus 2pt}
  25. begin{minipage}{columnwidth}
  26. centering
  27. begin{tikzpicture}[scale = .65, transform shape,trim left]
  28. begin{groupplot}[
  29. group style={
  30. group size=2 by 3,
  31. horizontal sep=0pt,
  32. vertical sep=50pt
  33. },
  34. scale only axis,
  35. xlabel={nm},
  36. ylabel={Abs},
  37. xmin=385, xmax=565,
  38. xtick pos=left,
  39. ytick pos=left,
  40. no marks,
  41. max space between ticks=1000pt,
  42. try min ticks=4,
  43. xlabel={},
  44. ylabel={}
  45. ]
  46.  
  47. nextgroupplot[title=textbf{(a)} $15:60$ (TPPStextsubscript{4}-ce{2Cl}:Lig{1})]
  48. addplot table [col sep=comma, x=nm, y=10] {ST053 1560 Por SG.csv};label{1560porsg1}
  49. addplot table [col sep=comma, x=nm, y=100] {ST053 1560 Por SG.csv};label{1560porsg2}
  50. addplot table [col sep=comma, x=nm, y=200] {ST053 1560 Por SG.csv};label{1560porsg3}
  51.  
  52. nextgroupplot[title=textbf{(e)} $60:15$ (TPPStextsubscript{4}-ce{2Cl}:Lig{1})]
  53. addplot table [col sep=comma, x=nm, y=10] {ST053 6015 Por SG.csv};
  54. addplot table [col sep=comma, x=nm, y=100] {ST053 6015 Por SG.csv};
  55. addplot table [col sep=comma, x=nm, y=200] {ST053 6015 Por SG.csv};
  56.  
  57. nextgroupplot[title=textbf{(g)} $60:15$ (TPPStextsubscript{4}-ce{2Cl}:Buffer)]
  58. addplot table [col sep=comma, x=nm, y=10] {ST053 6015 Por blank SG.csv};
  59. addplot table [col sep=comma, x=nm, y=100] {ST053 6015 Por blank SG.csv};
  60. addplot table [col sep=comma, x=nm, y=200] {ST053 6015 Por blank SG.csv};
  61.  
  62. end{groupplot}
  63. node at ($(group c1r2.west)!0.5!(group c1r2.west)$)[xshift=-1.5cm]{rotatebox{90}{large{Absorption}}};
  64. node at ($(group c1r3.south)!0.5!(group c2r3.south)$)[yshift=-1.5cm]{large{Nanometer}};
  65. end{tikzpicture}
  66. end{minipage}
  67. caption{Caption}
  68. end{figure}
  69.  
  70. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement