-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.tex
More file actions
32 lines (30 loc) · 937 Bytes
/
table.tex
File metadata and controls
32 lines (30 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
\documentclass{article}
\usepackage{booktabs} % For professional-looking tables
\usepackage{longtable} % For long tables that span multiple pages
\usepackage{graphicx} % Allows table resizing
\usepackage{adjustbox} % To resize the table if needed
\begin{document}
\begin{table}[h!]
\centering
\caption{Table Caption}
\label{tab:label}
\begin{tabular}{lccc}
\toprule
ID & Name & Department & Joining Date \\
\midrule
101 & Alice & HR & 2021-06-15 \\
102 & Bob & IT & 2020-09-20 \\
103 & Charlie & Finance & 2019-11-03 \\
104 & David & Marketing & 2022-01-25 \\
105 & Eve & Sales & 2021-03-14 \\
106 & Frank & HR & 2020-07-11 \\
107 & Grace & IT & 2018-12-05 \\
108 & Hank & Finance & 2023-04-18 \\
109 & Ivy & Marketing & 2019-06-30 \\
110 & Jack & Sales & 2022-08-22 \\
111 & Karen & HR & 2021-05-09 \\
112 & Liam & IT & 2020-10-17 \\
\bottomrule
\end{tabular}
\end{table}
\end{document}