Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. begin{enumerate}
  2. item red cells;
  3. item orange cells;
  4. item green cells;
  5. item grey cells. % the error starts on this line
  6. end{enumerate}
  7.  
  8. begin{figure}[h!]
  9. centering
  10. includegraphics[width=1linewidth]{result_grey.png}
  11. caption{Grey results}
  12. label{fig:results_grey}
  13. end{figure}
  14. subsection{Some subsection}
  15. This is my list of colored cells:
  16.  
  17. documentclass[a4paper,11pt,pdftex]{article}
  18. usepackage[utf8]{inputenc}
  19. usepackage[magyar]{babel} %needed in Hungarian reports
  20. usepackage{fancyhdr} %for the nice header
  21. usepackage{graphicx} %grapics input
  22. usepackage{tikz} %tikz figures
  23. usepackage[colorinlistoftodos]{todonotes}
  24. renewcommand{baselinestretch}{1.5}
  25. usepackage{amsmath}
  26. usepackage{amsthm}
  27. usepackage{amssymb}
  28. usepackage{braket}
  29. usepackage{caption}
  30. usepackage{subcaption}
  31. usepackage[colorinlistoftodos]{todonotes} % szövegbeli kommentekhez, szövegdobozokhoz
  32. usepackage{comment} %többsoros kommentekhez
  33. usepackage{textgreek} %görög betűk math mode-on kívül
  34. usepackage{fixltx2e} % felső és alsó indexekhez
  35. usepackage{siunitx} %szép celsius jelért
  36. usepackage{t1enc} %mert kéri...
  37. usepackage{array} % hogy a táblázat oszlopainak szélességét állítsam
  38. usepackage{tabu} % ez meg auomatikusan kitölti a táblázatot oldalszélesre
  39. usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm,pdftex]{geometry} %margins
  40. usepackage{color}
  41. usepackage{xcolor}
  42. usepackage{url}
  43. usepackage{hyperref} %links
  44. hypersetup{
  45. colorlinks=true,
  46. linkcolor=blue,
  47. urlcolor=blue,
  48. citecolor=red,
  49. unicode=true
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement