Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. begin{pspicture}(0,-2.4)(7.72,2.4)
  2. psframe[linewidth=0.04,dimen=outer](7.72,2.4)(0.0,-2.4)
  3. end{pspicture}
  4.  
  5. usepackage{pstricks} %for embedding pspicture.
  6. usepackage{graphicx} %for figure environment.
  7.  
  8. %=========================
  9. begin{figure}[h]
  10. centering{
  11. resizebox{0.5textwidth}{!}{input{picture_file.tex}}}
  12. caption{your caption} label{fig:figureone}
  13. end{figure}
  14. %===========================
  15.  
  16. documentclass[pstricks,border=12pt]{standalone}
  17. usepackage{pstricks-add}
  18.  
  19. begin{document}
  20. begin{pspicture}[showgrid=true](-3,-3)(3,3)
  21. % your drawing code goes here!
  22. end{pspicture}
  23. end{document}
  24.  
  25. documentclass{article}
  26. usepackage{graphicx}
  27. graphicspath{{../Diagrams/}}
  28.  
  29. begin{document}
  30. begin{figure}
  31. centering
  32. includegraphics[scale=1.5]{Template}
  33. caption{This is my PSTricks template.}
  34. label{fig:Template}
  35. end{figure}
  36. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement