Я использую (Тема Метрополиса как у Бимера) и я создаю простую таблицу, и там отображается что-то большое, затем я смотрю, как это уменьшить, и использую:
\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}