Even if I comment all but the first line of the table, I still get a "misplaced alignment tab character" error.
Code: Select all
\documentclass[14pt,fleqn,reqno]{extarticle}
\usepackage{amsfonts,amsmath,amssymb,amsthm}
\usepackage{bm,nicefrac}
\usepackage{array} % Provides for a more flexible array and tabular environment
\usepackage{booktabs} % For fancy stuff in arrays and tables, like the following column definitions
\newcolumntype{L}{>{\begin{math}}l<{\end{math}}}%
\newcolumntype{C}{>{\begin{math}}c<{\end{math}}}%
\newcolumntype{R}{>{\begin{math}}r<{\end{math}}}%
\usepackage{multirow}
\begin{document}
\begin{tabular}{lLL}}
Derivative & Newton notation & Liebnitz notation \\
\hrule
First & y^\prime \text{ or } f^\prime(x) & \frac{\dif y}{\dif x} \\
Second & y^{\prime\prime} \text{ or } f^{\prime\prime}(x) & \frac{\dif^2 y}{\dif x^2} \\
Third & y^{\prime\prime\prime} \text{ or } f^{\prime\prime\prime}(x) & \frac{\dif^3 y}{\dif x^3} \\
Fourth & y^{(4)} \text{ or } f^{(4)}(x) & \frac{\dif^4 y}{\dif x^4} \\
\begin{center}
\ldots
\end{center} \\
$n$th & y^{(n)} \text{ or } f^{(n)}(x) & \frac{\dif^n y}{\dif x^n}
\end{tabular}
\end{document}