私は(ビーマーのようなメトロポリスのテーマ) 簡単な表を作成すると大きなものが表示されるので、それを縮小する方法を調べて、次のものを使用しました。
\begin{table}[H]
\resizebox{0.8\textwidth}{!}{\begin{minipage}{\textwidth}
....
\end{minipage}}
\end{table}
は正常に動作しますが、テーブルが中央の位置ではなく、常に右側に移動します。 を使用してすべてのテーブルを含めようとしました\centering \begin{center} and \begin{flushleft}
が、移動しません。
これが私の表です:
\begin{flushleft}
\begin{table}[H]
\resizebox{0.8\textwidth}{!}{\begin{minipage}{\textwidth}
\begin{tabular}{l| l l}
\toprule
\textbf{Parameters} & \textbf{Description of values} \\
\toprule
$ Prohibited\_times $ & Timeslots prohibited for the event. \\
$ Prohibited\_rooms $ & Rooms prohibited for the event. \\
$ Prohibited\_events\_clash $ & Events you can not clash. \\
$ Count\_students $ & Number of students associated to the event. \\
$ Predecessor $ & Events predecessor to the event. \\
$ Successor $ & Event successor to the events. \\
$ Features $ & Characteristics of the event. \\
\bottomrule
\end{tabular}
\end{minipage}}
\end{table}
\end{flushleft}
\end{frame}
何かアイデアはありますか?よろしく
答え1
\centering
afterを含めてみましたか\begin{table}[h]
?
また、minipage
環境を削除することもできます。
以下の例は私にとっては問題なく機能しました:
\begin{frame}
\begin{table}[h]
\centering
\resizebox{0.7\textwidth}{!}{
\begin{tabular}{l l l}
\toprule
\textbf{Parameters} & \textbf{Description of values} \\
\toprule
$ Prohibited\_times $ & Timeslots prohibited for the event. \\
$ Prohibited\_rooms $ & Rooms prohibited for the event. \\
$ Prohibited\_events\_clash $ & Events you can not clash. \\
$ Count\_students $ & Number of students associated to the event. \\
$ Predecessor $ & Events predecessor to the event. \\
$ Successor $ & Event successor to the events. \\
$ Features $ & Characteristics of the event. \\
\bottomrule
\end{tabular}
}
\end{table}
\end{frame}
答え2
私はadjustboxで試してみましたが、うまくいきました。よろしく。
\begin{table}[h]
\centering
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{l| l l}
\toprule
\textbf{Parameters} & \textbf{Description of values} \\
\toprule
$ Prohibited\_times $ & Timeslots prohibited for the event. \\
$ Prohibited\_rooms $ & Rooms prohibited for the event. \\
$ Prohibited\_events\_clash $ & Events you can not clash. \\
$ Count\_students $ & Number of students associated to the event. \\
$ Predecessor $ & Events predecessor to the event. \\
$ Successor $ & Event successor to the events. \\
$ Features $ & Characteristics of the event. \\
\bottomrule
\end{tabular}
\end{adjustbox}
\end{table}
\end{frame}