I have long table with many cells almost inside every cell long text. The problem is that non-English text does not wrap correctly.
\documentclass[11pt, a4paper]{article} \usepackage[T2A,T2B,T2C]{fontenc} \usepackage[utf8]{inputenc} \usepackage[russian]{babel} \begin{document} \begin{table} \centering \begin{tabular}{ | m{1cm} | m{2.5cm} | m{2.5cm} | m{2.5cm} | m{2.5cm} | m{2.5cm} | m{2.5cm} | m{2.5cm} | m{2.5cm} | } %перенос слов в клетке частично работает только в первой строке \hline %\rowcolor{wordBlue} \hline \textbf{Text 1} & \textbf{Some Symbols} & \textbf{Long lines of code} & \textbf{Очень длинные строки, которые почему-то не переносяться корректно} & \textbf{Год} & \textbf{Разнообразные вариации чисел и букв 1234, новый номер 892473124} & \textbf{Text with some new default values.} & \textbf{Базовый текст, в котором могут быть смешаны letters and numbers in different languages + 2} & \textbf{Last column with which I have plenty of troubles and I need to fix} \\ \hline \end{tabular} \end{table} \end{document} I have found trick that if I do
& ~\textbf{Last column with which I have plenty of troubles and I need to fix} it works, but I have indentation that I don't need.


~will cause the indentation, in my point of view