테이블 배치 및 간격

테이블 배치 및 간격

저는 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}

관련 정보