Advertisement
diaaa

Document

Dec 17th, 2020
1,710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.69 KB | None | 0 0
  1. \begin{filecontents*}{pic\jobname.tex}
  2.    \documentclass{standalone}
  3.    \usetikzlibrary{shapes}
  4.    \begin{document}
  5.          \color{red}
  6.            inside
  7.        \begin{tikzpicture}[x=1em, y=1em]
  8.            \draw (0,0) rectangle node{Test} (2,2);
  9.        \end{tikzpicture}
  10.    \end{document}
  11. \end{filecontents*}
  12.  
  13. \documentclass{article}
  14. \usepackage{tikz}
  15. \usepackage{xcolor}
  16. \usepackage[fontsize=14pt]{scrextend}
  17. \usepackage[mode=build, subpreambles=false]{standalone}
  18. \begin{document}
  19. \section*{d}
  20.    fontsize = 14pt \includestandalone{pic\jobname}
  21.  
  22.    \huge fontsize huge \includestandalone{pic\jobname}
  23.  
  24.    \tiny fontsize tiny \includestandalone{pic\jobname}
  25. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement