在嵌入式对象文档中,表格部分以我想要的方式显示表格。
但是,我似乎找不到如何实现这一点的解释。
我怎样才能得到下表,
位于其自己的线上并居中。
以下是包含表格的段落的代码:
\begin{enumerate}
\item We need to solve for $x$ in the equation $2x^{3}+9x^{2}-11x-30=0$.
Since $x-2$ is a linear factor of $f(x)$ we can use long division
to find the quadratic factor of $f(x)$.%
\begin{tabular}{ccccc}
& & $2x^{2}$ & $+13x$ & $+15$\tabularnewline
\cline{2-5}
\multicolumn{1}{c|}{$x-2$} & $2x^{3}$ & $+9x^{2}$ & $-11x$ & $-30$\tabularnewline
& $-2x^{3}$ & $+4x^{2}$ & & \tabularnewline
\cline{2-5}
& & $13x^{2}$ & $-11x$ & $-30$\tabularnewline
& & $-13x^{2}$ & $+26x$ & \tabularnewline
\cline{3-5}
& & & $15x$ & $-30$\tabularnewline
& & & $-15x$ & $+30$\tabularnewline
\cline{4-5}
& & & & $0$\tabularnewline
\end{tabular}The next step is to factorise $2x^{2}+13x+15$.
\begin{eqnarray*}
2x^{2}+13x+15 & = & 2x^{2}+10x+3x+15\\
& = & 2x(x+5)+3(x+5)\\
& = & (x+5)(2x+3)
\end{eqnarray*}
Hence, $(x-2)(x+5)(2x+3)=0$. Therefore, either $x=2$, $x=-5$ or
$x=-\frac{3}{2}$ are the solutions of the equation.
\end{enumerate}
答案1
您需要将表格放在列表中其自己的段落中,然后将该段落置于中心。
在 Lyx 中执行此操作:
- 在表格前按 Enter 键。您将在列表中获得一个新项目。
- 增加缩进(
[ALT+SHIFT+RIGHT]
)。 - 返回默认文本(枚举图标左侧的图标)。
- 在表格后按下回车键即可获得列表中的另一个新段落。
- 将光标放在表格前面,然后转到“编辑”>“段落设置”。在对话框中,将“对齐”更改为“居中”,然后单击“确定”。
在 LaTeX 中,代码如下所示:
\documentclass{article}
\begin{document}
\begin{enumerate}
\item We need to solve for $x$ in the equation $2x^{3}+9x^{2}-11x-30=0$.
Since $x-2$ is a linear factor of $f(x)$ we can use long division
to find the quadratic factor of $f(x)$.
\begin{center}
\begin{tabular}{ccccc}
& & $2x^{2}$ & $+13x$ & $+15$\tabularnewline
\cline{2-5}
\multicolumn{1}{c|}{$x-2$} & $2x^{3}$ & $+9x^{2}$ & $-11x$ & $-30$\tabularnewline
& $-2x^{3}$ & $+4x^{2}$ & & \tabularnewline
\cline{2-5}
& & $13x^{2}$ & $-11x$ & $-30$\tabularnewline
& & $-13x^{2}$ & $+26x$ & \tabularnewline
\cline{3-5}
& & & $15x$ & $-30$\tabularnewline
& & & $-15x$ & $+30$\tabularnewline
\cline{4-5}
& & & & $0$\tabularnewline
\end{tabular}
\end{center}
The next step is to factorise $2x^{2}+13x+15$.
\begin{eqnarray*}
2x^{2}+13x+15 & = & 2x^{2}+10x+3x+15\\
& = & 2x(x+5)+3(x+5)\\
& = & (x+5)(2x+3)
\end{eqnarray*}
Hence, $(x-2)(x+5)(2x+3)=0$. Therefore, either $x=2$, $x=-5$ or
$x=-\frac{3}{2}$ are the solutions of the equation.
\end{enumerate}
\end{document}