我有一些元素应该环绕在表格周围,但看起来好像表格刚刚创建了自己的列,现在表格下方不会显示任何其他内容。它看起来如下:
所有内容基本上都在我想要的位置,但我不确定为什么 tcolorbox 不会在整个页面上延伸,或者如何让它这样做。这是我使用的代码(是的,我知道有一种更简单的方法可以让表格看起来像我想要的那样)。
\documentclass{amsart}
\usepackage[utf8]{inputenc}
\usepackage{enumitem}
\usepackage{polynom}
\usepackage{multicol}
\usepackage{tcolorbox}
\usepackage[margin=0.75in]{geometry}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{wrapfig}
\graphicspath{ {./images/} }
\begin{document}
\begin{wraptable}{r}{.3\textwidth}
\centering
\begin{tabular}{|c | ccc | ccc| ccc|ccc|ccc|}
\hline
$t$ &&&&&&&&&&&&&&& \\ [0.5ex]
\hline
\hline
$x$&&&&&&&&&&&&&&& \\ [0.5ex]
\hline
$y$ &&&&&&&&&&&&&&& \\[0.5ex]
\hline
\end{tabular}
\end{wraptable}
\noindent $x=\frac{1}{2}t^3-6t$\\
$y=\frac{1}{2}t^2$
\begin{center}
\includegraphics[scale=.5]{48656_graph_1010a_md.png}
\end{center}\\
\vspace{.4cm}
\begin{tcolorbox}
\textbf{Graphing parametric equations on a graphing calculator}
\begin{itemize}
\item put your calculator in parametric mode (MODE $\rightarrow$ switch from FUNC to PAR)
\end{itemize}
\end{tcolorbox}
\end{document}
任何意见都将非常感谢!