Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. % run: xelatex or lualatex mal-texperience.tex
  2. documentclass[a4paper]{article}
  3. pagestyle{empty}
  4. usepackage{fontspec}
  5. newfontfamilyfff{FFFTusj.ttf} % [ExternalLocation] % if the font is in working directory only
  6. newfontfamilycon[
  7. %ExternalLocation, % if fonts are in working directory
  8. BoldFont=Comfortaa-Bold.ttf,
  9. ItalicFont=Comfortaa-Light.ttf,
  10. ]{Comfortaa-Regular.ttf}
  11. usepackage{xcolor}
  12. definecolor{myorange}{RGB}{239,124,0}
  13. definecolor{mygray}{RGB}{198,198,198}
  14. usepackage{tikz}
  15.  
  16. begin{document}
  17. defmylogo#1 #2 #3 #4 {%
  18. rotatebox{#4}{%
  19. scalebox{#3}{%
  20. {fffcolor{#2}raisebox{1.5ex}[0pt][0pt]{4th}%
  21. kern-1.5ex{color{#1}scalebox{4}{Traisebox{-0.4ex}[0pt][0pt]{E}X}}%
  22. kern-6.5exraisebox{-1.55ex}[0pt][0pt]{scalebox{0.75}{City, Country}}%
  23. {color{#1}raisebox{-3.1ex}[0pt][0pt]{makebox[0pt][r]{2014}}}}%
  24. }% End of scalebox...
  25. }% End of rotatebox...
  26. }% End of mylogo...
  27. begin{tikzpicture}[remember picture, overlay]
  28. node[yshift=-7cm] at (current page.north) {mylogo myorange black 2 0 };
  29. foreach x/y/s in {2/6/90, 5/7/-90, 8/7/0, 0/3/0, 0/0/-90, 3/-2/90, 6.5/-1.5/0, 10/0/-90, 12/3/0, 12/6/180} {
  30. node[xshift=x cm, yshift=-y cm] (current page.south west)
  31. {mylogo mygray mygray 1 {s} };
  32. }% End of foreach...
  33. node[minimum width=paperwidth, minimum height=0.4paperheight, fill=myorange, anchor=south] at (current page.south) {};
  34. node[minimum width=paperwidth, minimum height=2mm, fill=myorange, anchor=south, yshift=0.4paperheight+3mm] at (current page.south) {};
  35. node[align=center, scale=2, font=bfseriescon, yshift=-4mm] at (current page) {{color{myorange} From date to date, year}\
  36. Where, City and State\
  37. The name of the hotel
  38. };
  39. node[align=left, xshift=1cm, yshift=1cm, anchor=south west, font=bfseriescon, scale=1.4] at (current page.south west) {Invited speakers are:\[2mm]
  40. {color{white}First name}\
  41. His/her lectureldots\
  42. {color{white}Second name}\
  43. Another lectureldots\
  44. {color{white}Third name}\
  45. Another lectureldots\
  46. {color{white}Fourth name}\
  47. Another lectureldots\
  48. {color{white}Fifth name}\
  49. First tutorialldots\
  50. {color{white}Sixth name}\
  51. Second tutorialldots
  52. };
  53. node[align=right, xshift=-1cm, yshift=1cm, anchor=south east, font=con, scale=1.4] at (current page.south east) {
  54. {bfseriescolor{white}Organizer 1}\
  55. bfseries and\
  56. {bfseriescolor{white}Organizer 2}\
  57. bfseries invite you to participate in\[5mm]
  58. {bfseriescolor{white}Large Name of the conference}\[5mm]
  59. {color{white}textit{Conference motto:}}\
  60. bfseries Some text\
  61. {color{white}textit{Conference website:}}\
  62. bfseries Some website\
  63. {color{white}textit{Contacts:}}\
  64. bfseries Some email
  65. };
  66. end{tikzpicture}
  67. %mylogo myorange black 2 0 par
  68. %mylogo mygray mygray 1 90
  69. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement