Graphics, Figures & TablesHelp with making table

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
Meh
Posts: 3
Joined: Thu Apr 28, 2011 10:35 am

Help with making table

Post by Meh »

I'm pretty new to LaTeX, so I need some help to create a table. The table I want to create is attached.


Thx
Attachments
This is the desired result.
This is the desired result.
table-sample.jpg (41.55 KiB) Viewed 2240 times
Last edited by Meh on Thu Apr 28, 2011 5:49 pm, 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

Meh
Posts: 3
Joined: Thu Apr 28, 2011 10:35 am

Re: Help with making table

Post by Meh »

I tried this without succes..

\begin{table}
\centering
\caption{Locosys ls20031}
\begin{tabular}{p{3cm} p{3cm} p{3cm}}
\hline
\hline
Gegeven & \multicolumn{2}{c}{Waarde} \\
\hline
Afmetingen & \multicolumn{2}{c}{30x30 mm}\\
Chip & \multicolumn{2}{c}{MediaTek MT3329}\\
Frequentie & \multicolumn{2}{c}{L1 1575.42MHz, C/A code}\\
Update rate & \multicolumn{2}{c}Default 1Hz, tot 10Hz} \\
\multirow{2}{c}{Acquisitie Tijd} & Hot Start & $<2s$\\
& Cold Start & $35s$\\
\multirow{2}{c}{Positie nauwkeurigheid} & Autonoom & $3m$\\
& SBAS & $2.5m$\\
Datum & \multicolumn{2}{c}{WGS-84 (default)}\\
Max. hoogte & $<18000m$\\
Max. snelheid & $<515m/s$\\
\hline
\end{tabular}
\label{table:GPS}
\end{table}
meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

Help with making table

Post by meho_r »

Try this:

Code: Select all

\documentclass{article}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\usepackage{array}
\usepackage{multirow}

\providecommand{\tabularnewline}{\\}

\usepackage{mathptmx} % Times New Roman font

\begin{document}


\setlength{\extrarowheight}{2pt}
\begin{tabular}{|l|l|l|}
\hline 
Chip & \multicolumn{2}{l|}{MediaTek MT3329}\tabularnewline
\hline 
Frequency & \multicolumn{2}{l|}{L1 1575.42Mhz, C/A code}\tabularnewline
\hline 
Channels & \multicolumn{2}{l|}{Support 66 channels (22 Tracking, 66 Acquisition}\tabularnewline
\hline 
Update Rate & \multicolumn{2}{l|}{1Hz default, up to 10Hz}\tabularnewline
\hline 
\multirow{2}{*}{Acquisition time} & Hot Start (Open Sky) & \multicolumn{1}{l|}{< 2s (typical)}\tabularnewline
\cline{2-3} 
 & Cold Start (Open Sky) & \multicolumn{1}{l|}{35s (typical)}\tabularnewline
\cline{2-3} 
\hline
\multirow{2}{*}{Position Accuracy} & Autonomous & \multicolumn{1}{l|}{3m (2D RMS)}\tabularnewline
\cline{2-3} 
 & SBAS & \multicolumn{1}{l|}{2.5m (depends on accuracy of correction data)}\tabularnewline
\hline 
Datum & \multicolumn{2}{l|}{WGS-84 (default)}\tabularnewline
\hline 
Max. Altitude & \multicolumn{2}{l|}{< 18,000 m}\tabularnewline
\hline 
Max. Velocity & \multicolumn{2}{l|}{< 515 m/s}\tabularnewline
\hline 
\end{tabular}

\end{document}

Meh
Posts: 3
Joined: Thu Apr 28, 2011 10:35 am

Re: Help with making table

Post by Meh »

Thanks!
Post Reply