我正在尝试调整表格的大小,因为它不适合,经过一番研究,我找到了\resizebox{}
或\scalebox{}
,但它们似乎都不起作用,或者我做错了什么。有人能帮我吗?
这是我的桌子:
\documentclass{bachproef-tin}
\usepackage{hogent-thesis-titlepage} % Titelpagina conform aan HOGENT huisstijl
\usepackage{graphicx}
\graphicspath{{../Assets/}}
\usepackage{url}
...
\begin{document}
...
\section{Vergelijking}
\begin{table}[h!]
\centering
\begin{tabular}{|c||c|c|c|c|c|}
\hline
& UiPath & Automation Anywhere & WorkFusion & IntelliBot & Microsoft Flow \\
\hline
\hline
Cursus op het platform & ja & ja & ja & ja & nee \\
\hline
Custom Activities & community & enterprise & community & community & ? \\
\hline
Example Row & & & & & \\
\hline
\hline
Score & /60 & /60 & /60 & /60 & /60 \\
\hline
\end{tabular}
\caption{Vergelijking van de verschillende RPA Providers.}
\label{Vergelijking}
\end{table}
...
\end{document}
我注意到使用 makecell 会使我的表格跳转到新页面,我可以阻止这种情况吗?