橫向模式下垂直對齊的表格,附註腳

橫向模式下垂直對齊的表格,附註腳

所以我讀過這些:

橫向模式下表格下方的註腳 橫向模式下表格的問題 在橫向頁面中居中多頁長表格

我的問題很簡單:

如果我在橫向模式下有一個「工作」表,則在使用 \begin{table}[htbp!] \end{table} 時

當我將環境改為 \begin{table}[p!] \end{table} 時,如何保留它

為了垂直對齊的目的?

我看到其他人推薦帶有表格註釋的三部分包,但它看起來不如我目前擁有的那麼好。我知道這些事情實際上比它們看起來更複雜,但肯定有某種方法可以讓 [p!] 模式與腳註一起工作,當它與 [htbp!] 一起正常工作時?

乳膠似乎依靠“t”將腳註放在底部。

微量元素

\documentclass[onecolumn,10pt]{article}
\usepackage{footmisc}
\usepackage{pdflscape}

\begin{document}
\begin{landscape}
\begin{table}[htbp!]

    \begin{tabular}{lc}
asdfasdf\footnotemark[1] & hiaasdhfhasdf\\
asdfasdfasdf2\footnotemark[2] & asdfasdfasdf\\
\end{tabular}%

\end{table}%
\footnotetext[1]{footie1.}
\footnotetext[2]{footie2.}
\end{landscape}

\end{document}

答案1

可能的標記

在此輸入影像描述

\documentclass[onecolumn,10pt]{article}
\usepackage{footmisc}
\usepackage{pdflscape}

\begin{document}
\begin{landscape}
\begin{table}[p]
\begin{minipage}{\linewidth}
    \begin{tabular}{lc}
asdfasdf\footnotemark[1] & hiaasdhfhasdf\\
asdfasdfasdf2\footnotemark[2] & asdfasdfasdf\\
\end{tabular}%

\footnotetext[1]{footie1.}
\footnotetext[2]{footie2.}
\end{minipage}
\end{table}%

\end{landscape}

\end{document}

或者

在此輸入影像描述

\documentclass[onecolumn,10pt]{article}
\usepackage{footmisc}
\usepackage{pdflscape}

\begin{document}
\begin{landscape}
  \vspace*{\fill}
\begin{table}[h]
    \begin{tabular}{lc}
asdfasdf\footnotemark[1] & hiaasdhfhasdf\\
asdfasdfasdf2\footnotemark[2] & asdfasdfasdf\\
\end{tabular}%

\end{table}%
\vspace*{\fill}
\footnotetext[1]{footie1.}
\footnotetext[2]{footie2.}

\end{landscape}

\end{document}

或者

在此輸入影像描述

\documentclass[onecolumn,10pt]{article}
\usepackage{footmisc}
\usepackage{pdflscape}

\begin{document}
\begin{landscape}
  \vspace*{\fill}

  \noindent
  \begin{tabular}{lc}
asdfasdf\footnotemark[1] & hiaasdhfhasdf\\
asdfasdfasdf2\footnotemark[2] & asdfasdfasdf\\
\end{tabular}%


\vspace*{\fill}
\footnotetext[1]{footie1.}
\footnotetext[2]{footie2.}

\end{landscape}

\end{document}

相關內容