Hi, the problem was much much simpler. The
\text
command is defined with package amsmath. Since there are some little bugs in amsmath, package mathtools comes to help. Just including this package in your document, and you are fine
Code: Select all
\documentclass{article}
\usepackage{array} % Provides for a more flexible array and tabular environment, like the column defs below
\usepackage{mathtools} % Provides for a more flexible array and tabular environment, like the column defs below
\usepackage{booktabs} % For fancy stuff in arrays and tables
\usepackage{multicol,multirow}
\newcolumntype{L}{>{\begin{math}}l<{\end{math}}}%
\newcolumntype{C}{>{\begin{math}}c<{\end{math}}}%
\newcolumntype{R}{>{\begin{math}}r<{\end{math}}}%
\newcolumntype{B}{>{\textbf{}l<{}}}%
\begin{document}
\title{Conic Sections}
\begin{tabular}{|l|L|L|}
\toprule
\multicolumn{3}{c}{\large \textbf{Parabola}\normalsize} \\
\multicolumn{3}{c}{\large \textbf{Parabola}} \\
\toprule
& \text{Vertical Axis} & \text{Horizontal Axis} \\
\midrule
Equation & \left(x-h\right)^2 = 4p \left(y-k\right) & \left(y-k\right)^2 = 4p \left(x-h\right) \\
\midrule
Axis of symmetry & x=h & y=k \\
\midrule
Vertex & \left(h,k\right) & \left(h,k\right) \\
\midrule
Focus & \left(h,k+p\right) & \left(h+p,k\right) \\
\midrule
Directrix & y=k-p & x=h-p \\
\midrule
Direction of opening & p>0 \Rightarrow up & p>0 \Rightarrow right \\
& p<0 \Rightarrow down & p<0 \Rightarrow left \\
\bottomrule
\multicolumn{3}{l}{Note: $d_1=d_2$, dist. to directrix=dist. to focus} \\
\bottomrule
\end{tabular}
\end{document}
Little hint on the multicolumn: multicolumns are completely independant of the surroundings, no former math switch will be known there. By the way, all those
cells in a tabular are independent, so there is no real use in switching back to
\normalsize
. Please keep in mind, that changes of the font size are tricky. They should always be done the following way
Code: Select all
{\Large this is some large text\par}
That means putting the switch and the text inside a group to keep the change of size local. But the
\par
is really important since it takes care of the interline spacing.
\textbf
works in a very similar manner. Internally,
\textbf{this is fat text}
is expanded to
. To be honest, the internals are a little bit more complicated

The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.