Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{booktabs}% http://ctan.org/pkg/booktabs
  3. usepackage{colortbl}% http://ctan.org/pkg/colortbl
  4. usepackage{amsmath}% http://ctan.org/pkg/amsmath
  5. usepackage{xcolor}% http://ctan.org/pkg/xcolor
  6. usepackage{graphicx}% http://ctan.org/pkg/graphicx
  7.  
  8. colorlet{tableheadcolor}{gray!25}
  9. newcommand{headcol}{rowcolor{tableheadcolor}} %
  10. colorlet{tablerowcolor}{gray!10}
  11. newcommand{rowcol}{rowcolor{tablerowcolor}} %
  12.  
  13. newcommand{topline}{arrayrulecolor{black}specialrule{0.1em}{abovetopsep}{0pt}%
  14. arrayrulecolor{tableheadcolor}specialrule{belowrulesep}{0pt}{0pt}%
  15. arrayrulecolor{black}}
  16.  
  17. newcommand{midline}{arrayrulecolor{tableheadcolor}specialrule{aboverulesep}{0pt}{0pt}%
  18. arrayrulecolor{black}specialrule{lightrulewidth}{0pt}{0pt}%
  19. arrayrulecolor{white}specialrule{belowrulesep}{0pt}{0pt}%
  20. arrayrulecolor{black}}
  21.  
  22. newcommand{rowmidlinecw}{arrayrulecolor{tablerowcolor}specialrule{aboverulesep}{0pt}{0pt}%
  23. arrayrulecolor{black}specialrule{lightrulewidth}{0pt}{0pt}%
  24. arrayrulecolor{white}specialrule{belowrulesep}{0pt}{0pt}%
  25. arrayrulecolor{black}}
  26.  
  27. newcommand{rowmidlinewc}{arrayrulecolor{white}specialrule{aboverulesep}{0pt}{0pt}%
  28. arrayrulecolor{black}specialrule{lightrulewidth}{0pt}{0pt}%
  29. arrayrulecolor{tablerowcolor}specialrule{belowrulesep}{0pt}{0pt}%
  30. arrayrulecolor{black}}
  31.  
  32. newcommand{rowmidlinew}{arrayrulecolor{white}specialrule{aboverulesep}{0pt}{0pt}%
  33. arrayrulecolor{black}}
  34.  
  35. newcommand{rowmidlinec}{arrayrulecolor{tablerowcolor}specialrule{aboverulesep}{0pt}{0pt}%
  36. arrayrulecolor{black}}
  37.  
  38. newcommand{bottomline}{arrayrulecolor{white}specialrule{aboverulesep}{0pt}{0pt}%
  39. arrayrulecolor{black}specialrule{heavyrulewidth}{0pt}{belowbottomsep}}%
  40. newcommand{bottomlinec}{arrayrulecolor{tablerowcolor}specialrule{aboverulesep}{0pt}{0pt}%
  41. arrayrulecolor{black}specialrule{heavyrulewidth}{0pt}{belowbottomsep}}%
  42.  
  43. begin{document}
  44.  
  45. begin{table}[htb!]
  46. centering
  47.  
  48. begin{tabular}{lllccccc}
  49. topline
  50. headcol & & & multicolumn{5}{c}{Kodierung} \
  51. cmidrule {4-8}
  52. headcol & Einheit & Faktor $x_i$ & -2 & -1 & 0 & 1 & 2 \
  53. midline
  54. Badtemperatur & °C & 1 & 40 & 45 & 50 & 55 & 60 \
  55. rowcol Bandgeschwindigkeit & mm/min & 2 & 500 & 625 & 750 & 875 & 1000 \
  56. Trockentemperatur & °C & 3 & 22 & 36,5 & 51 & 65,5 & 80 \
  57. rowcol begin{tabular}[c]{@{}l@{}}Luftfeuchte im \ Trockenmediumend{tabular} & % & 4 & 0 & 13,75 & 27,5 & 41,25 & 55 \
  58. bottomlinec
  59. end{tabular}
  60. caption{Faktoren und ihre Kodierung}
  61. label{tab:FaktorenKodierung}
  62. end{table}
  63.  
  64. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement