将表格数据水平居中,而不为其提供单独的页面

将表格数据水平居中,而不为其提供单独的页面

我现在已经设置了一个相当基本的表格:

\documentclass[paper=a4, fontsize=11pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage{fourier}
\usepackage[english]{babel}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage{amsmath,amsfonts,amsthm}
\usepackage[pdftex]{graphicx}
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhead{}
\fancyfoot[L]{}
\fancyfoot[C]{}
\fancyfoot[R]{}
\usepackage{enumerate}
\usepackage{multicol}
\usepackage[bottom]{footmisc}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\usepackage{footnote}
\makesavenoteenv{tabular}

\begin{document}
\section*{Polynomials}
\begin{align*}
    \phi_n \cdot x^{n} \enspace + \enspace \phi_{n-1} \cdot x^{n-1} \enspace + \enspace \phi_{n-2} \cdot x^{n-2} \enspace + \enspace \ldots \enspace + \enspace \phi_2 \cdot x^2 \enspace + \enspace \phi_1 \cdot x^1 \enspace + \enspace \phi_0 \cdot x^0
\end{align*}

For instance, \(4x^4 + \frac{x^2}{2} + x -6\) looks like:

\begin{table}[H]
\centering
\begin{tabular}{l || c | c}
     & \(\phi_n\) & \(n\) \\
    \(4x^4\) & \(4\) & \(4\) \\
    \(\epsilon\)\footnote[2]{meaning "nothing found"} & \(0\) & \(3\) \\
    \(\frac{x^2}{2}\) & \(\frac{1}{2}\) & \(2\) \\
    \(x\) & \(1\) & \(1\) \\
    \(-6\) & \(-6\) & \(0\) \\
\end{tabular}
\end{table}

\clearpage

Foofasdfa sdf asdf asdf asdf asf dasfd afd 

\end{document}

除了这个表格现在占据了整个页面,并且非常小之外。有没有办法像普通文本一样将表格水平居中?

答案1

\usepackage{float}如果您想使用说明符,则需要[H]。您也应该删除\clearpage。这是一个具有相同问题的更简单示例。

\documentclass{article}
%\usepackage{float}  % <--- activate to fix problem
\begin{document}
abc
\begin{figure}[H]
\rule{4cm}{4cm}
\end{figure}
def
\end{document}

如果没有 float 包,则[H]无效,使用无效的位置说明符会阻止使用有效选项ht和。因此,该表将保留在队列中并在文档末尾输出。bp

答案2

如果您不想让tabular结构浮动,并且不需要标题,则不要将 放在tabulartable。获得您描述的效果的最简单方法就是将 放在tabular数学显示中,如下所示:

For instance, \(4x^4 + \frac{x^2}{2} + x -6\) looks like:
\[
\begin{tabular}{l || c | c}
     & \(\phi_n\) & \(n\) \\
    \(4x^4\) & \(4\) & \(4\) \\
    \(\epsilon\)\footnote[2]{meaning "nothing found"} & \(0\) & \(3\) \\
    \(\frac{x^2}{2}\) & \(\frac{1}{2}\) & \(2\) \\
    \(x\) & \(1\) & \(1\) \\
    \(-6\) & \(-6\) & \(0\) \\
\end{tabular}
\]

但是现在,你可以将整个字符串改为 an array,并删除\(...\)每行中的所有对,从而节省一些输入。如下所示:

For instance, \(4x^4 + \frac{x^2}{2} + x -6\) looks like:
\[\begin{array}{l || c | c}
     & \phi_n & n \\
    4x^4 & 4 & 4 \\
    \epsilon\footnote[2]{meaning "nothing found"} & 0 & 3 \\
    \frac{x^2}{2} & \frac{1}{2} & 2 \\
    x & 1 & 1 \\
    -6 & -6 & 0 \\
\end{array}\]

\makesavenoteenv{array}如果您想要脚注,您当然还需要在序言中设置。

相关内容