由于我的横向页面在左侧提供页码,但我需要在页面底部显示连续的数字。我在这里粘贴了图片
%% pjhus extracted contours and volume
\begin{landscape}
\begin{table}[tbp]\centering
\caption{Expert evaluation of cardiac function and oedema volume}
\label{Tab:pj1}
\begin{tabular}{c c c c c c c c c c}\hline
\textbf{Patient ID} & \textbf{Pathology} & \textbf{Gander} & \textbf{Age} &\multicolumn{2}{c}{\textbf {Generated-Contours }} &\multicolumn{4}{c}{\textbf{Ground-Truth Volume}}\\\cline{5-10}
& & & &\textbf{Outer (\%)}&\textbf{Inner (\%)}&\textbf{EDV (ml)}&\textbf{ESV (ml)}&\textbf{EF (\%)}&\textbf{oedema (\%)}\\\hline
Patient-A001& A001& Male & 57& 83.23& 96.30& 106& 72& 32& 43\\
Patient-A002& A002 &Male& 46& 87.68& 97.00& 111& 51& 54& 17\\
Patient-A003& A003& Male& 58& 82.00& 96.87& 177&97& 45& 30\\
Patient-A004& A004 &Male& 48& 82.56& 98.00& 173& 98& 43& 29\\\hline
\textbf{Mean Average} &-&-&-& 84.6&96.4&144.8&80.3&45.3&36.7\\
\textbf{SD}&-&-&-& 2.63&1.42&34.28&27.63&8.38&10.79\\
\hline
\end{tabular}
\end{table}
\end{landscape}
答案1
不要使用“ ”,而要\begin{landscape}
使用“ \begin{sidewaystable}
”,代码如下:
\usepackage{rotating,floatpag}
\floatpagestyle{plain}
\begin{sidewaystable}
\caption{...}
\begin{tabular}
....
\end{tabular}
\end{sidewaystable}
希望这能帮助您满足您的期望。
请查看更新的标签:
\documentclass{book}
\usepackage[figuresright]{rotating}
\usepackage{floatpag}
\floatpagestyle{plain}
\begin{document}
\begin{sidewaystable}
\centering
\caption{Expert evaluation of cardiac function and oedema volume}
\label{Tab:pj1}
\begin{tabular}{c c c c c c c c c c}\hline
\textbf{Patient ID} & \textbf{Pathology} & \textbf{Gander} & \textbf{Age} &\multicolumn{2}{c}{\textbf {Generated-Contours }} &\multicolumn{4}{c}{\textbf{Ground-Truth Volume}}\\\cline{5-10}
& & & &\textbf{Outer (\%)}&\textbf{Inner (\%)}&\textbf{EDV (ml)}&\textbf{ESV (ml)}&\textbf{EF (\%)}&\textbf{oedema (\%)}\\\hline
Patient-A001& A001& Male & 57& 83.23& 96.30& 106& 72& 32& 43\\
Patient-A002& A002 &Male& 46& 87.68& 97.00& 111& 51& 54& 17\\
Patient-A003& A003& Male& 58& 82.00& 96.87& 177&97& 45& 30\\
Patient-A004& A004 &Male& 48& 82.56& 98.00& 173& 98& 43& 29\\\hline
\textbf{Mean Average} &-&-&-& 84.6&96.4&144.8&80.3&45.3&36.7\\
\textbf{SD}&-&-&-& 2.63&1.42&34.28&27.63&8.38&10.79\\
\hline
\end{tabular}
\end{sidewaystable}
\end{document}