答案1
1. 使用侧盖
加载包后,您会得到旁边的标题侧盖在你的序言中,并使用
\begin{SCtable*}
\end{SCtable*}
以下是一些代码。如果您喜欢左侧的标题,侧盖具有可选参数来解决这个问题,如果您有两个侧面文档,还可以处理内边距和外边距。
使用包标题设置字幕格式。
\documentclass[twocolumn, fontsize=11pt]{article}
\usepackage{geometry}
\usepackage{lmodern, lipsum}
\usepackage[ragged]{sidecap}
\usepackage{caption, array} % Load package caption for decent formatting and spacing
\usepackage{booktabs, ragged2e} % Use booktabs rules, ragged2e to have ragged text with hyphenation
\renewcommand{\arraystretch}{1.2}
\newcolumntype{L}{>{$}l<{$}}
\captionsetup[table]{font=footnotesize, labelfont=bf}
\begin{document}
\lipsum[1-3]
\begin{SCtable*}[1][!bh]
\small
\caption{Summary of considered rapidity windows in analysis of $\overline{B}/B$ ratios. The beam energy $\sqrt{^{S}NN}$ is given in $GeV$%
\label{tab:test123}}
\begin{tabular}{@{}*{7}{L}}
\toprule
\sqrt{^{S}NN} & 200 & 62.4 & 39 & 27 & 19.6 & 11.5 \\
\midrule
\Lambda & |y|<1 & |y|<1 & |y|<0.5 & |y|<0.5 & |y|<0.5 & |y|<0.5 \\
\Theta & |y|<0.75 & |y|<1 & |y|<0.5 & |y|<0.5 & |y|<0.5 & |y|<0.5 \\
\Omega & |y|<1 & |y|<1 & |y|<0.5 & |y|<0.5 & |y|<0.5 & |y|<0.5 \\
\bottomrule
\end{tabular}
\end{SCtable*}
\lipsum[5-12]
\end{document}
2. 使用KOMA 脚本
这KOMA 脚本类对定制标题有广泛的支持。这是使用scrartcl。或者,您可以加载包屏幕扩展,如果您更喜欢使用其他文档类:
\documentclass[captions=topbeside, twocolumn]{scrarticle}
\usepackage{lipsum}
\usepackage{array} % Load package caption for decent formatting and spacing
\usepackage{booktabs, ragged2e} % Use booktabs rules, ragged2e to have ragged text with hyphenation
\renewcommand{\arraystretch}{1.2}
\setlength{\tabcolsep}{4pt}
\newcolumntype{L}{>{$}l<{$}}
\setcapindent{0pt}
\setcaptionalignment{L}
\addtokomafont{captionlabel}{\bfseries}
\addtokomafont{caption}{\small}
\begin{document}
\lipsum[1-3]
\begin{table*}
\begin{captionbeside}[Summary]{Summary of considered rapidity windows in analysis of $\overline{B}/B$ ratios. The beam energy $\sqrt{^{S}NN}$ is given in $GeV$ %
\label{tab:test123}}[o]
\raisebox{0.6\baselineskip}{%
\small
\begin{tabular}[t]{@{}*{7}{L}@{}}
\toprule
\sqrt{^{S}NN} & 200 & 62.4 & 39 & 27 & 19.6 & 11.5 \\
\midrule
\Lambda & |y|<1 & |y|<1 & |y|<0.5 & |y|<0.5 & |y|<0.5 & |y|<0.5\\
\Theta & |y|<0.75 & |y|<1 & |y|<0.5 & |y|<0.5 & |y|<0.5 & |y|<0.5\\
\Omega & |y|<1 & |y|<1 & |y|<0.5 & |y|<0.5 & |y|<0.5 & |y|<0.5\\
\bottomrule
\end{tabular}%
}
\end{captionbeside}
\end{table*}
\lipsum[5-17]
\end{document}