How can I add a line break into a table during math-mode? For instance, here:
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath}
\begin{document}
\begin{center}
\begin{tabular}{c|c|c|l}
1&1&1&$X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X\otimes X$
\end{tabular}
\end{center}
\end{document}
\begin{tabular}{c|c|c|p{10cm}}instead... – Phelype Oleinik Aug 07 '18 at 14:09pcolumn as suggested in the comment you will need$x\otimes....$in the cell (or usearraypackage>{$}p{10cm}<{$}) – David Carlisle Aug 07 '18 at 18:12X^{\otimes 25}, you won't need any line break ;o) – Bernard Aug 07 '18 at 18:50