在下面的 LateX 代码中,我的问题是“表 1”和标题文本最终出现在两行中。我搜索了解决方案,但没有找到问题或类似的解决方案。最终的标题作为图形显示如下,我希望它是“表 1 示例表”在同一行中,而不是“表 1”和“示例表”在两行中。非常感谢任何帮助!
\documentclass[10pt,journal,compsoc]{IEEEtran}
\usepackage{ifpdf}
\usepackage[nocompress]{cite}
\usepackage[pdftex]{graphicx}
\usepackage{amsmath}
\usepackage{algorithmic}
\usepackage{array}
\usepackage[caption=false,font=footnotesize,labelfont=sf,textfont=sf]{subfig}
\usepackage{stfloats}
\usepackage{url}
% correct bad hyphenation here
\hyphenation{op-tical net-works semi-conduc-tor}
% Additional packages
\usepackage{multirow}
\usepackage{rotating}
\begin{document}
\title{Bla}
\maketitle
Bla bla bla
\begin{sidewaystable}
\centering
\caption{Sample table}
\label{tab:sample}
\begin{tabular}{|l|l|l|l|l|}
\hline
\textbf{Bla1} & \textbf{Bla2} & \textbf{Bla3} & \textbf{Bla4}\\ \hline
\end{tabular}
\end{sidewaystable}
\end{document}