Graphics, Figures & Tables ⇒ Help with making table
Help with making table
Thx
- Attachments
-
- This is the desired result.
- table-sample.jpg (41.55 KiB) Viewed 2242 times
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
Re: Help with making table
\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}
Help with making table
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}