Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.94 KB | None | 0 0
  1. %-----------------------------------------------------------------------------------------
  2. % Determines the type of document and font size
  3. %-----------------------------------------------------------------------------------------
  4. \documentclass[12pt,a4paper]{article}
  5. \usepackage[utf8]{inputenc}
  6. \usepackage{float} % here for H placement parameter
  7.  
  8. %-----------------------------------------------------------------------------------------
  9. % Font control
  10. %-----------------------------------------------------------------------------------------
  11. \usepackage{mathptmx} % Hack
  12. %-----------------------------------------------------------------------------------------
  13. \usepackage{helvet} % Arial/Helvetica font
  14. \renewcommand{\familydefault}{\sfdefault} % Makes serif text all Helvetica
  15. %-----------------------------------------------------------------------------------------
  16. % Set up the page margins
  17. %-----------------------------------------------------------------------------------------
  18. \usepackage[left=2.5cm, right=2.5cm, top=2.5cm]{geometry} % Sets the page margins
  19. %-----------------------------------------------------------------------------------------
  20. % Allow graphics
  21. %-----------------------------------------------------------------------------------------
  22. \usepackage{graphicx}
  23.  
  24. %-----------------------------------------------------------------------------------------
  25. % Add your report title here
  26. %-----------------------------------------------------------------------------------------
  27. \title{\huge{\textbf{F5}}}
  28.  
  29. % Add your name here
  30. \author{
  31. NNN \\
  32. NN 2.letnik MNNNNNAG\\
  33. FENRNNI\\
  34. XD}
  35. \date{\today}
  36.  
  37. %-----------------------------------------------------------------------------------------
  38. % The start of the document
  39. %-----------------------------------------------------------------------------------------
  40. \begin{document}
  41.  
  42. %-----------------------------------------------------------------------------------------
  43. % This adds the title page
  44. %-----------------------------------------------------------------------------------------
  45. \maketitle
  46. \thispagestyle{empty}
  47.  
  48. \clearpage % moves to the next page
  49.  
  50. %-----------------------------------------------------------------------------------------
  51. % This adds the abstract
  52. %-----------------------------------------------------------------------------------------
  53.  
  54. \thispagestyle{empty}
  55.  
  56. %-----------------------------------------------------------------------------------------
  57. % Move to a new page and set the page numbering from here
  58. %-----------------------------------------------------------------------------------------
  59. \clearpage % moves to the next page
  60. \pagenumbering{arabic}
  61. \section{PSNR} % The start of a new section
  62. \begin{table}
  63. \begin{tabular}{llll}
  64. M & THR & PSNR[dB] \\ \hline
  65. 1 & 1 & 59.23974514002651 \\
  66. 20 & 3 & 29.484904080413305 \\
  67. 40 & 5 & 26.185923576403866 \\
  68. //
  69. \end{tabular}
  70. \end{table}
  71. \section{Shannonova entropija}
  72. \begin{table}
  73. \begin{tabular}{llll}
  74. M & THR & Original[bits] & Steganografirana[bits] \\ \hline
  75. 1 & 1 & 3.6779538e+09 & 3.6774175e+09 \\
  76. 20 & 3 & 3.6779538e+09 & 4.485332e+09 \\
  77. 40 & 5 & 3.6779538e+09 & 5.4319037e+09 \\
  78. \end{tabular}
  79. \end{table}
  80. \section{Blokovnost}
  81. \begin{table}
  82. \begin{tabular}{llll}
  83. M & THR & Original & Steganografirana \\ \hline
  84. 1 & 1 & 10368 & 10398 \\
  85. 20 & 3 & 10368 & 7579 \\
  86. 40 & 5 & 10368 & 4502 \\
  87. \end{tabular}
  88. \end{table}
  89. \clearpage % moves to the next page
  90. \section{Intenziteta pikslov - 0 odstranjena iz histograma}
  91. \includegraphics{RPlot003.png}
  92. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement