当我尝试构建它时:
\usepackage{array}
\documentclass{beamer}
\begin{document}
\begin{frame}{Bibliotheken}
\setlength\extrarowheight{5pt}
\begin{tabular}{|l|l|l|l|l|l|}
\hline
\textbf{Bibliothek} & \textbf{Sprache} & \textbf{max. Rang} & \textbf{SIMD} & \textbf{Multithreading} & \textbf{Besonderheiten}\\\hline
\textit{Fastor} & C++ & n & \checkmark & $\times$ & Overheadreduktion durch fehlende BLAS-Calls \\\hline\pause
\textit{Blitz}++ & C++ & 11 & $\times$ & $\times$ & \\\hline\pause
\textit{Eigen} & C++ & 250 & \checkmark & \checkmark & \\\hline\pause
\textit{XTensor} & C++ & n & \checkmark & \checkmark & effiziente BLAS-Calls \\\hline\pause
\textit{Taco} & C++ & n & $\times$ & $\times$ & Runtime Code-Generieung und Compilierung \\\hline\pause
\textit{NumPy} & Python & n & \checkmark & \checkmark & effiziente BLAS-Calls \\\hline\pause
\textit{Tensorflow} & Python & 250 & \checkmark & \checkmark & Operator-Baum-generierung und Optimierung \\
\hline
\end{tabular}
\end{frame}
\end{beamer}
我遇到了这个失败:
我该如何解决这个问题?最好的解决方案就是尽可能少地进行更改...
答案1
正如指出的那样这里您可以在此处使用\noalign
。此答案还将您的代码片段转换为可编译的示例,但如果其他人认为它是重复的,我很乐意将其删除。
\documentclass{beamer}
\usepackage{array}
\usepackage{adjustbox}
\begin{document}
\begin{frame}[t]
\frametitle{Bibliotheken}
\adjustbox{width=\textwidth}{\setlength\extrarowheight{5pt}
\begin{tabular}{|l|l|l|l|l|l|}
\hline
\textbf{Bibliothek} & \textbf{Sprache} & \textbf{max. Rang} & \textbf{SIMD} & \textbf{Multithreading} & \textbf{Besonderheiten}\\\hline
\textit{Fastor} & C++ & n & \checkmark & $\times$ & Overheadreduktion durch fehlende BLAS-Calls \\\hline\noalign{\pause}
\textit{Blitz}++ & C++ & 11 & $\times$ & $\times$ & \\\hline\noalign{\pause}
\textit{Eigen} & C++ & 250 & \checkmark & \checkmark & \\\hline\noalign{\pause}
\textit{XTensor} & C++ & n & \checkmark & \checkmark & effiziente BLAS-Calls \\\hline\noalign{\pause}
\textit{Taco} & C++ & n & $\times$ & $\times$ & Runtime Code-Generieung und Compilierung \\\hline\noalign{\pause}
\textit{NumPy} & Python & n & \checkmark & \checkmark & effiziente BLAS-Calls \\\hline\noalign{\pause}
\textit{Tensorflow} & Python & 250 & \checkmark & \checkmark & Operator-Baum-generierung und Optimierung \\
\hline
\end{tabular}}
\end{frame}
\end{document}