横向模式下垂直对齐的表格,带有脚注标记

横向模式下垂直对齐的表格,带有脚注标记

所以我读过这些:

横向模式下表格下方的脚注 横向模式下的表格问题 在横向页面中将多页长表格居中

我的问题很简单:

如果我有一个横向模式下的“工作”表,当使用 \begin{table}[htbp!] \end{table}

当我将环境更改为 \begin{table}[p!] \end{table} 时,如何保留它

为了垂直对齐?

我看到其他人推荐带有 tablenotes 的 threeparttable 包,但它看起来不如我现在拥有的那么好。我知道这些事情背后比它们看起来的要复杂得多,但是肯定有某种方法可以让 [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}

相关内容