각주가 있는 가로 모드의 세로 정렬 테이블

각주가 있는 가로 모드의 세로 정렬 테이블

그래서 나는 이것을 읽었습니다:

가로 모드의 표 아래 각주 가로 모드의 테이블 문제 가로 페이지에서 여러 페이지의 긴 테이블을 중앙에 배치

내 질문은 간단합니다.

가로 모드에서 "작업" 테이블이 있는 경우 \begin{table}[htbp!] \end{table}을 사용할 때

환경을 \begin{table}[p!] \end{table}로 변경할 때 이를 어떻게 보존할 수 있나요?

수직 정렬을 위해?

다른 사람들이 tablenotes와 함께 threeparttable 패키지를 추천하는 것을 보았지만 현재 가지고 있는 것만큼 좋아 보이지는 않습니다. 나는 이것들이 보이는 것보다 더 복잡하다는 것을 이해합니다. 그러나 [htbp!]와 잘 작동할 때 [p!] 모드가 각주와 작동하도록 하는 방법이 분명히 있을 것입니다.

라텍스는 바닥에 각주를 배치하기 위해 't'에 의존하는 것 같습니다.

MWE

\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}

관련 정보