\documentclass[11pt]{article} \usepackage[utf8]{inputenc} \usepackage[czech]{babel} \usepackage[T1]{fontenc} \usepackage{amsmath} \usepackage{a4wide} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{bigstrut} \usepackage{tabu} % ohraniceni tabulky \usepackage{array} % vlastnost textu pro konkretni sloupec \usepackage{dcolumn} % zarovnani podle desetinneho radku \usepackage{multirow} % text v tabulce pres vice radku \begin{document} \begin{center} % prvni tabulka =============== \renewcommand{\arraystretch}{1.5} \tabcolsep=10pt \begin{tabular}{|c|l|} \hline \itshape body&\itshape známka\\ \hline 100--85&výborně\\ 84--70&velmi dobře\\ 69--60&dobře\\ 59--0&nevyhověl\\ \hline \end{tabular} \end{center} % konec prvni tabulky =============== \begin{center} % druha tabulka =============== \shorthandoff{-} \begin{tabu}{|[2pt]c|>{\bfseries}l|p{5cm}|[2pt]} \tabucline[2pt]{-} \multicolumn{3}{|[2pt]c|[2pt]}{\bfseries Výsledná známka}\bigstrut\\ \hline \itshape body&\multicolumn{1}{c|}{\itshape známka}&\multicolumn{1}{c|[2pt]}{\itshape charakteristika}\\ \hline 100--85&výborně&bravurní znalosti nebo výborné podklady pro opisování\\ \cline{3-3} 84--70&velmi dobře&v problému se dobře orientuje\\ \cline{2-3} 69--60&dobře&má dobrou globální představu, realizace pokulhává\\ \hline 59--0&nevyhověl&věří, že se všechno naučí a opíše až při zkoušce\\ \tabucline[2pt]{-} \end{tabu} \shorthandon{-} \end{center} % konec druhe tabulky =============== \begin{center} % tabulka vyrazu =============== \begin{tabular}{c c D{,}{,}{4}} zdroj &výraz s $\pi$ &\multicolumn{1}{c}{Hodnota}\\ \hline \verb*|$\pi$|&$\pi$&3,1416\\ \verb*|$\pi^{\pi}$|&$\pi^{\pi}$&36,46\\ \verb*|$(\pi^{\pi})^{\pi}$|&$(\pi^{\pi})^{\pi}$&8066,7\\ \end{tabular} \end{center} % konec tabulky vyrazu =============== \begin{center} % treti tabulka =============== \renewcommand{\arraystretch}{1.2} \shorthandoff{-} \begin{tabular}{|l|l|} \hline a&Řádek 1\bigstrut\\ \hline b& \multirow{2}*{Text přes 2 řádky}\\ \cline{1-1} c&\\ \hline d&Řádek 4\bigstrut\\ \hline \end{tabular} \shorthandon{-} \end{center} % konec treti tabulky =============== \begin{center} % tabulka v textu =============== \noindent Text text text \begin{tabular}{l@{ $\rightarrow$ }l} 1&aaa\\ 2&bbb\\ 3&ccc\\ 4&ddd \end{tabular} text text \hrulefill{} text. \end{center} % konec tabulky v textu =============== \end{document}