
以下の LateX コードで、私の問題は「表 1」とキャプション テキストが 2 行に分かれていることです。解決策を探しましたが、問題や類似の解決策は見つかりませんでした。図としての結果のキャプションは以下のとおりです。私が望んでいるのは、「表 1」と「サンプル テーブル」が 2 行に分かれているのではなく、「表 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}