Following up my previous post on table environments/packages. Here is a MWE of a table I'd like to create (the current output is not my intention).
Code: Select all
%%% Preamble %%%
\documentclass[12pt]{article}
% Element packages
\usepackage{tabularx} % for tables
\renewcommand\tabularxcolumn[1]{m{#1}} % for vertical centering text in X column
\usepackage{booktabs,adjustbox}
\usepackage{array, multirow}
\setlength{\tabcolsep}{18 pt}
\renewcommand{\arraystretch}{1.5}
%%% Body %%%
\begin{document}
\begin{table}[h!]
\begin{tabularx}{\textwidth} {
| >{\raggedright\arraybackslash}X
| >{\raggedright\arraybackslash}X | }
\hline
\textbf{Name of Property} & \textbf{Definition} \\
\hline
\textbf{Addition, Subtraction, Multiplication, Division \linebreak Property of Equality}
&
\
\vspace{1in} \\
\hline
\textbf{Simplify}
&
\
\vspace{1in} \\
\hline
\end{tabularx}
\end{table}
\end{document}
Thank you in advance!
Noah