桌子的位置和間距

桌子的位置和間距

我是 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}

相關內容