
\begin{question}
Calculate the reverberation time of hall of 1500 \si{m^3} volume
having a seating capacity for 120 persons when \\
(i) when the hall is empty \\
(ii) with full capacity audience \\
(iii) audience occupying the cushioned seats with following data:
\begin{table}
\begin{tabular}{| c | c | c |}
\hline
\textbf{Surface} & \textbf{Area (\si{m^2})} & \textbf{Coefficient of
absorption (O W U)} \\
\hline
Plastered walls & 112 & 0.03 \\
Wooden floor & 130 & 0.06 \\
Plastered ceiling & 170 & 0.04 \\
Wooden door & 20 & 0.06 \\
\hline
Cushioned chairs (Nos.) & 100 & 1.0 \\
Audience (Nos.) & 120 & 4.7 \\
\hline
\end{tabular}
\end{table}
답변1
환경 table
은 부동 테이블용입니다. 표 형식 자료를 이동하지 않으려면 해당 내용을 생략하고 tabular
.
답변2
-environment
table
는 부동 테이블 형식을 얻는 데 사용됩니다. 테이블 형식이 부동하는 것을 원하지 않으면 사용하지 마십시오. 대신 간단한 환경을 사용할 수 있습니다center
.이 테이블 형식에 대한 캡션을 원하면
caption
-package를 로드하고\captionof{table}{Bla Bla}
명령을 사용하십시오. 표의 캡션은 표 위에 있어야 합니다.적절하게 사용하세요
siunitx
, 숫자용\num{1e3}
, 숫자 단위용\SI{1500}{\cubic\meter}
데이터 열에 siunitx의 S-column 옵션을 사용하면 소수점에 숫자를 정렬하고 옵션으로 형식을 지정할 수 있습니다
table-format
.테이블에 수직선을 사용하지 마십시오.
booktabs
적절한 간격의 특수 라인을 제공합니다. 이를 사용하고 문서를 읽는 것이 좋습니다.열거형을 하드 코딩해서는 안 되며 목록 환경을 사용하세요. 목록을 사용자 정의해야 하는 경우 패키지를 살펴보세요
enumitem
. 라텍스 목록의 매우 높은 사용자 정의 기능과 이전 열거를 재개할 수 있는 가능성을 제공합니다.
다음과 같이 컴파일 가능한 예를 제시해야 합니다.
\documentclass{article}
\usepackage{exsheets} % i assumed you used this package
\usepackage{booktabs} % for the top/bottom/midrule commands
\usepackage{siunitx} % use it everwhere you can and all of it's commands
\usepackage{enumitem} % for custamisation of enumerate and other lists
\usepackage{caption} % for the \captionof command
\begin{document}
\begin{question}
Calculate the reverberation time of hall of \SI{1500}{\cubic\metre} volume
having a seating capacity for 120 persons when
\begin{enumerate}[label=(\roman*), nosep]
\item when the hall is empty
\item with full capacity audience
\item audience occupying the cushioned seats with following data:
\end{enumerate}
\begin{center}
\captionof{table}{Data for the Question}
\begin{tabular}{l S[table-format=3.0] S[table-format=1.2]}
\toprule
{Surface} & {Area / \si{m^2}} & {Coefficient of absorption / O W U} \\
\midrule
Plastered walls & 112 & 0.03 \\
Wooden floor & 130 & 0.06 \\
Plastered ceiling & 170 & 0.04 \\
Wooden door & 20 & 0.06 \\
\midrule
Cushioned chairs (Nos.) & 100 & 1.0 \\
Audience (Nos.) & 120 & 4.7 \\
\bottomrule
\end{tabular}
\end{center}
\end{question}
\end{document}
산출: