現時点ではかなり基本的なテーブルを設定しています:
\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]
使用できなくなります。その結果、テーブルはキューに保持され、ドキュメントの最後に出力されます。h
t
b
p
答え2
構造をフロートさせたくなくtabular
、キャプションも必要ない場合は、 をtabular
に入れないでくださいtable
。説明した効果を得るための最も簡単な方法は、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}
\]
しかし、全体を に変更し、各行の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}
脚注が必要な場合は、前文も設定する必要があります。