
この問題にどう対処したらよいか、私にはさっぱりわかりません。どなたか助けていただけると幸いです。添付のスクリーンショットにあるように、横向きモードの表が章名とページ番号 (赤い四角の内側) と重なっています。表でカバーされているページのページ番号/章名を削除するか、ヘッダーと重ならないように表を移動したいです。
よろしくお願いいたします、ヘンリック
テーブルに使用されるコード:
\begin{landscape}
\section{Rock-Eval Data}
Rock-Eval data. Any missing values in hydrogen and oxygen index is due to either negative or missing TOC values.
\begin{footnotesize}
\begin{center}
\begin{longtable}{ccccccccc}
\caption{Rock-Eval data.}\\
\toprule
\label{tab:retable}
\textbf{Level (m)} & \textbf{S$1$ (mg/g)} & \textbf{S$2$ (mg/g)} & \textbf{S$3$ (mg/g)} & \textbf{T$_{Max}$ (\degree{C})} & \textbf{PI (wt ratio)} & \textbf{Hydrogen Index (mg HC/g TOC)} & \textbf{Oxygen Index (mg HC/g TOC)} &\textbf{Powder Colour}\\
\midrule
\endfirsthead
\multicolumn{9}{c}%{\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
\toprule
\textbf{Level (m)} & \textbf{S$1$ (mg/g)} & \textbf{S$2$ (mg/g)} & \textbf{S$3$ (mg/g)} & \textbf{T$_{Max}$ (\degree{C})} & \textbf{PI (wt ratio)} & \textbf{Hydrogen Index (mg HC/g TOC)} & \textbf{Oxygen Index (mg HC/g TOC)} &\textbf{Powder Colour}\\
\midrule
\endhead
\bottomrule \multicolumn{3}{r}{\textit{Continued on next page}}\\
\endfoot
\bottomrule
\endlastfoot
DATA GOES HERE
$11.75$ & $0$ & $0$ & $0.62$ & $513$ & $0$ & & & Light Grey \\
\end{longtable}
\end{center}
\end{footnotesize}
\end{landscape}
答え1
を使用したソリューションを以下に示しますmakecell
。これにより、\thead
セル内の改行と一般的な書式設定が可能になります。Note を使用すると、単位をタイプセットし、表内の数字を適切に書式設定するのに役立ちます。また、私の知る限り、環境SIunitx
はなく、スイッチのみです。とにかく、表を で入力できます。 footnotesize
\footnotesize
\normalsize
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{array, ltablex, caption, booktabs, makecell}
\usepackage[detect-weight]{siunitx}
\renewcommand\theadfont{\normalfont\bfseries\boldmath}
\usepackage{lscape}
\begin{document}
\begin{landscape}
\section{Rock-Eval Data}
Rock-Eval data. Any missing values in hydrogen and oxygen index is due to either negative or missing TOC values.
\begin{center}%
\begin{longtable}{ccccccccc}
\caption{Rock-Eval data.}
\label{tab:retable}\\
\toprule
\thead{Level \\(m)} & \thead{S$1$ (mg/g)} & \thead{S$2$\\ (mg/g)} & \thead{S$3$\\ (mg/g)} & \thead{$\mathbf T_\text{Max}$\\ (\si{\celsius})}
& \thead{PI\\ (wt ratio)} & \thead{Hydrogen Index\\ (mg HC/g TOC)} & \thead{Oxygen Index\\ (mg HC/g TOC)} &\thead{Powder\\ Colour}\\
\midrule
\endfirsthead
%\multicolumn{9}{c}%{\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
\toprule
\thead{Level \\(m)} & \thead{S$1$ (mg/g)} & \thead{S$2$\\ (mg/g)} & \thead{S$3$\\ (mg/g)} & \thead{$T_\text{Max}$\\ (\si{\celsius})}
& \thead{PI\\ (wt ratio)} & \thead{Hydrogen Index\\ (mg HC/g TOC)} & \thead{Oxygen Index\\ (mg HC/g TOC)} &\thead{Powder\\ Colour}\\
\midrule
\endhead
\bottomrule \multicolumn{3}{r}{\textit{Continued on next page}}\\
\endfoot
\bottomrule
\endlastfoot
%%DATA GOES HERE
$11.75$ & $0$ & $0$ & $0.62$ & $513$ & $0$ & & & Light Grey \\
\end{longtable}
\end{center}
\end{landscape}
\end{document}
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{array, ltablex, caption, booktabs, makecell}
\usepackage[detect-weight]{siunitx}
\renewcommand\theadfont{\normalfont\bfseries\boldmath}
\usepackage{lscape}
\begin{document}
\begin{landscape}
\section{Rock-Eval Data}
Rock-Eval data. Any missing values in hydrogen and oxygen index is due to either negative or missing TOC values.
\begin{center}%
\begin{longtable}{ccccccccc}
\caption{Rock-Eval data.}
\label{tab:retable}\\
\toprule
\thead{Level \\(m)} & \thead{S$1$ (mg/g)} & \thead{S$2$\\ (mg/g)} & \thead{S$3$\\ (mg/g)} & \thead{$\mathbf T_\text{Max}$\\ (\si{\celsius})}
& \thead{PI\\ (wt ratio)} & \thead{Hydrogen Index\\ (mg HC/g TOC)} & \thead{Oxygen Index\\ (mg HC/g TOC)} &\thead{Powder\\ Colour}\\
\midrule
\endfirsthead
%\multicolumn{9}{c}%{\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
\toprule
\thead{Level \\(m)} & \thead{S$1$ (mg/g)} & \thead{S$2$\\ (mg/g)} & \thead{S$3$\\ (mg/g)} & \thead{$T_\text{Max}$\\ (\si{\celsius})}
& \thead{PI\\ (wt ratio)} & \thead{Hydrogen Index\\ (mg HC/g TOC)} & \thead{Oxygen Index\\ (mg HC/g TOC)} &\thead{Powder\\ Colour}\\
\midrule
\endhead
\bottomrule \multicolumn{3}{r}{\textit{Continued on next page}}\\
\endfoot
\bottomrule
\endlastfoot
%%DATA GOES HERE
$11.75$ & $0$ & $0$ & $0.62$ & $513$ & $0$ & & & Light Grey \\
\end{longtable}
\end{center}
\end{landscape}
\end{document}