テーブルの位置と間隔

テーブルの位置と間隔

私は LaTeX の初心者で、私の質問があまりにも愚かだと思われることはすでにわかっています。実際、私は次のようなテキストを書いています。

The exact dimensions of the system are listed in Table……\\

\begin{tabular}{|c|c|}
  \hline
  $Description$ & Value \\ \hline
  Plenum, Cross-sectional area &$192*192 [mm^2] $ \\ \hline
  Plenum Length &$130 [mm]$  \\ \hline
  membrane, Cross-sectional area &$110*110 [mm^2] $ \\ \hline
  Membrane Tickness &$ 5 [mm] $ \\ \hline
  Flame Holder, Cross-sectional area &$4*60 [mm^2] $ \\ \hline
  Flame Holder Height  &$30 [mm] $ \\ \hline 
  Combustion Chamber, Cross-sectional area  &$198*198 [mm^2] $ \\ \hline
Combustion Chamber Height  &$350 [mm] $ \\ \hline  
 Exhaust Port Diameter  &$40 [mm] $ \\ \hline
 Exhaust Port Height  &$5[mm] $ \\ \hline
 Loudspeaker Cutout Diameter  &$186*186 [mm^2] $ \\ \hline 
  \end{tabular}


To model ~\cite{poinsot:hal-00270731} loudspeaker we have to use some electrical and mechanical characteristics of it.~\cite{points} A large part of the required parameters were available in the data sheet provided by producer company and the other features are calculated by formulas.\\
The list of used parameters of loudspeaker are mentioned in Table.\\

\begin{tabular}{|c|c|}
\hline 
Description & Value \\ 
\hline 
Voice Coil Resistance  & 3.3 [Ohm] \\ 
\hline 
Suspension compliance & 4.98e-4 [m/N] \\ 
\hline 
Suspension mechanical losses & 1.22 [N*s/m] \\ 
\hline 
Force factor & 4.5 [T*m] \\ 
\hline 
Voice coil inductance & 0.7 [mH] \\ 
\hline 
Voice coil loss factor & 0.2 \\ 
\hline 
Driving voltage (Peak) & 0.05 [V] \\ 
\hline 
Moving mass (Including Acoustic Load) & 23 [gr] \\ 
\hline 
Fundamental resonant frequency & 47 [Hz] \\ 
\hline 
Electrical Q factor & 1.44 \\ 
\hline 
Mechanical Q factor & 5.56 \\ 
\hline 
Total Q factor of driver & 1.14 \\ 
\hline 
\end{tabular}

問題は、表がページの左側にあり、最初の表とその下のテキストの間にスペースがないことです。ご協力いただければ幸いです。

答え1

各表を水平方向に中央揃えし、表の上下に垂直方向の空白を残すことに加えて、表形式の資料を相互参照できるようにする必要があるようです。したがって、各tabular環境を環境内に収め、ステートメントの直後にtable命令を挿入し、 を使用して番号付きキャプションを割り当て、ドキュメント内の他の場所での引数として使用できる「ラベル」を作成することをお勧めします。\centering\begin{table}\caption{...}\label{...}\ref{...}

\begin{table}
\centering
\caption{System dimensions} \label{tab:sys_dimen}
\begin{tabular}{|c|c|}
  \hline
  Description & Value \\ \hline
  ...
\end{tabular}
\end{table}

関連情報