Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ---
  2. title: "Title"
  3. header-includes: usepackage{graphicx}
  4. author: "Team"
  5. date: "Date"
  6.  
  7. output:
  8. html_document
  9.  
  10. ---
  11.  
  12. <script>
  13. $(document).ready(function() {
  14. $head = $('#header');
  15. $head.prepend('<img src="Image_I_Want.png" style="float: right;width: 250px;"/>')
  16.  
  17.  
  18. });
  19. </script>
  20.  
  21.  
  22. <br>
  23.  
  24. ## 1) Some nice title
  25.  
  26. <script>
  27. $(document).ready(function() {
  28. $head = $('#header');
  29. $head.prepend('<img src="logo.jpg" style="float: right;width: 150px;"/>')
  30. });
  31. </script>
  32. ---
  33. title: "Title"
  34. header-includes: usepackage{graphicx}
  35. author: "Team"
  36. date: "Date"
  37.  
  38. output:
  39. html_document
  40. ---
  41.  
  42. <h1>My company title</h1><img style='float:right;' src='myimage.png'>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement