Graphics, Figures & Tableshow to get a pretty table using beamer

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

how to get a pretty table using beamer

Post by NELLLY »

Hello
I need to insert a table with two comumns in a beamer block.
I used the following code

Code: Select all

\documentclass[xcolor={dvipsnames}]{beamer}
  \usepackage[utf8]{inputenc}
  \usepackage{graphicx,tabularx}
  \usepackage{ragged2e}
  
  %\usepackage{etoolbox}
% \apptocmd{\frame}{\justifying}{}{}
\let\olditem\item
\renewcommand\item{\olditem\justifying}
  \usepackage[english]{babel}
  \usetheme{Warsaw}
  
  \hyphenpenalty 10000
  \justifying
  %\setbeamertemplate{footline}{\insertframenumber/\inserttotalframenumber}
  \setbeamertemplate{footline}[frame number]
 \begin{document}
\begin{frame}{Various Bayesian control charts}
     \begin{block}
     
   \setlength{\tabcolsep}{0.8cm}
  
%\begin{table}[bth]
%\caption{Various Bayesian Control Charts} \centering
%\setlength{\tabcolsep}{0.8cm}
\begin{tabular}{l|l}
 {\color{Blue}Type of the chart} & {\color{Blue}Adaptive parameters} \\\hline
Basic Bayesian control chart&k\\
VSS Bayesian control chart& k, n\\
VSI Bayesian control chart& k, n, h\\

\end{tabular}
\end{block}


\end{frame}
\end{document}


FAhRz.jpg
FAhRz.jpg (22.67 KiB) Viewed 6343 times
I need the ouput of the table like the second table in the attached image in the colours layout which is much better than the one I used. Is there a solution to get this output or any other making my table looking better.
Last edited by cgnieder on Fri Mar 14, 2014 11:06 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Post Reply