.png)
Estoy intentando rotar esta tabla con su título y sus notas de tabla en la clase APA6. Quiero mantener la configuración predeterminada (la tabla va al final del documento).
En mis enfoques anteriores, logré girar la tabla (+ título, + notas de la tabla) con paisaje, pero rompe la configuración y mi tabla se muestra en el texto.
Como leo aquí... sidewaystable se coloca antes de la mesa normal cuando se usa la clase de documento apa6... Puedo usar la función de rotación. Cuando hago esto, solo puedo rotar la {función} tabular interna. En este caso, la tabla en sí se gira y se coloca al final del documento (como se esperaba), pero no puedo incluir los títulos y las notas de la tabla (si intento aplicar la rotación en la tabla en general, aparece un error).
MWE:
\documentclass[a4paper,man]{apa6}
\usepackage[utf8]{inputenc}
\usepackage{tabularx}
\usepackage{longtable}
\usepackage{threeparttablex}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{pdflscape}
\usepackage[misc]{ifsym}
\usepackage{csquotes}
\usepackage{lipsum}
\begin{document}
\title{Test}
\author{Me}
\affiliation{Here}
\abstract{Here goes some text.}
\keywords{Some interesting stuff 1, and 2}
\maketitle
\title{Test}
Blabla, see table \ref{tab:Deskriptionen}.
\begin{table}
\caption{My table}
\vspace*{2em}
\label{tab:Deskriptionen}
\begin{threeparttable}
\begin{tabular}{@{}lrrrrrrrrrrrrrrr@{}} \toprule
Variable & M & SD & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 & 13\\ \midrule
1 Value $\bar{x}$ & $2.72$ & $.53$ & $1$ &&&&&&&&&&&& \\
13 Value & $3.30$ & $1.17$ & $-.14$
& $-.14$ & $-.13$ & $-.06$ & $-,04$ & $-.63$\tabfnm{**} & $.78$\tabfnm{**} & $.81$\tabfnm{**} & $.72$\tabfnm{**} & $.47$\tabfnm{**} & $.70$\tabfnm{**} & $.59$\tabfnm{**} & $1$ \\ \midrule
\end{tabular}
\begin{tablenotes}[para,flushleft]
{\small
\textit{Anmerkung.} LE = Lernemotionen \tabfnt{*}\textit{p} < .05. \tabfnt{**}\textit{p} < .01.
}
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
Respuesta1
¿Como esto?
\documentclass[a4paper,man]{apa6}
\usepackage[utf8]{inputenc}
\usepackage{tabularx}
\usepackage{longtable}
\usepackage{threeparttablex}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{pdflscape}
\usepackage[misc]{ifsym}
\usepackage{csquotes}
\usepackage{lipsum}
\begin{document}
\title{Test}
\author{Me}
\affiliation{Here}
\abstract{Here goes some text.}
\keywords{Some interesting stuff 1, and 2}
\maketitle
\title{Test}
Blabla, see table \ref{tab:Deskriptionen}.
\begin{table}
\rotatebox{90}{\begin{minipage}{\textheight}
\caption{My table}
\vspace*{2em}
\label{tab:Deskriptionen}
\begin{threeparttable}
\begin{tabular}{@{}lrrrrrrrrrrrrrrr@{}} \toprule
Variable & M & SD & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 & 13\\ \midrule
1 Value $\bar{x}$ & $2.72$ & $.53$ & $1$ &&&&&&&&&&&& \\
13 Value & $3.30$ & $1.17$ & $-.14$
& $-.14$ & $-.13$ & $-.06$ & $-,04$ & $-.63$\tabfnm{**} & $.78$\tabfnm{**} & $.81$\tabfnm{**} & $.72$\tabfnm{**} & $.47$\tabfnm{**} & $.70$\tabfnm{**} & $.59$\tabfnm{**} & $1$ \\ \midrule
\end{tabular}
\begin{tablenotes}[para,flushleft]
{\small
\textit{Anmerkung.} LE = Lernemotionen \tabfnt{*}\textit{p} < .05. \tabfnt{**}\textit{p} < .01.
}
\end{tablenotes}
\end{threeparttable}
\end{minipage}}
\end{table}
\end{document}