latex文字竖排
\documentclass{article}
\usepackage{graphicx}
\usepackage{multirow}
\begin{document}
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
\rotatebox{90}{\textbf{第一列}} & \textbf{第二列} & \textbf{第三列} & \textbf{第四列} \\
\hline
Item 1 & Data 1 & Data 2 & Data 3 \\
\hline
Item 2 & Data 4 & Data 5 & Data 6 \\
\hline
Item 3 & Data 7 & Data 8 & Data 9 \\
\hline
\end{tabular}
\caption{竖排文字的表格示例}
\label{tab:vertical_text_table}
\end{table}
\end{document}