Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. documentclass{standalone}
  2. usepackage{tikz}
  3. usepackage{fontspec}
  4. usepackage{graphicx}
  5.  
  6. usetikzlibrary{decorations.text} % Allows us to wrap text around a circle
  7. usetikzlibrary{backgrounds} % Hopefully, allows transparent background
  8.  
  9. setmainfont{Times New Roman}
  10.  
  11.  
  12. begin{document}
  13.  
  14. fontspec{Times New Roman}
  15.  
  16.  
  17. begin{tikzpicture}
  18.  
  19. begin{scope}[on background layer]
  20. fill[opacity=0] (-3.5,-3.5) rectangle (3.5,3.5);
  21. end{scope}
  22.  
  23. % Draw double circle with text in the gap
  24.  
  25. draw [
  26. ultra thick,
  27. rotate=200,
  28. ] (0,0) circle (3.5cm);
  29.  
  30. draw [ultra thick] (0,0) circle (2.5cm);
  31.  
  32. path [
  33. decorate,
  34. decoration={
  35. raise=-1.4ex,
  36. text along path,
  37. text align={center},
  38. text={|Huge|2017}
  39. },
  40. ] (180:30mm) arc (180:360:30mm) ;
  41.  
  42. path [rotate=224,
  43. decorate,
  44. decoration={
  45. raise=-4.5ex,
  46. text along path,
  47. reverse path,
  48. text align={fit to path},
  49. text={|Huge|Look at this logo}
  50. }
  51. ] (90:35mm) arc (90:360:35mm) ;
  52.  
  53. % Include some more words
  54.  
  55. node[label=above:{huge MORE}] at (0,1) {};
  56. node[label=below:{huge WORDS}] at (0,-1) {};
  57.  
  58. % Include an image
  59.  
  60. pgftext{includegraphics[width=3.5cm]{some_file.png}} at (0pt,0pt);
  61.  
  62. end{tikzpicture}
  63. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement