我该怎么做才能让表格或图形以粗体显示

我该怎么做才能让表格或图形以粗体显示
\documentclass[a4paper,12pt]{report}
\usepackage[american]{babel}
\usepackage{amsfonts,amssymb,amsmath,amsthm}
\usepackage[table]{xcolor}
\usepackage{pifont}
\usepackage{marvosym}
\usepackage{fancybox,fancyhdr}
\usepackage{graphicx}
\usepackage{eso-pic}
\usepackage{yfonts}
\usepackage{pdfsync}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[dvips]{epsfig}
\usepackage{caption,subcaption}
\usepackage{algorithmicx}
\usepackage[ruled]{algorithm}
\usepackage{algpseudocode}

\usepackage[backend=biber,style=apa]{biblatex}

\usepackage{booktabs, collcell, makecell, tabularx, threeparttable}
    \newcommand{\tclr}[1]{\textcolor{black!70!black}{#1}}
    \newcolumntype{L}{>{\collectcell\tclr\raggedright}X<{\endcollectcell}}
    \renewcommand\TPTtagStyle{\bfseries} % optional
\usepackage{siunitx}
\usepackage{xparse}
\NewExpandableDocumentCommand\mcc{O{1}m}
    {\multicolumn{#1}{c}{#2}}
\newcommand\tot{\mathrm{tot}}
begin{document}
\begin{table}%[!htp]
    \small
    \sisetup{table-format=6.2e-1,per-mode=symbol}
    \setlength\tabcolsep{3pt}
\caption{The QPSO update equations for different potential energy types}\label{3wavfun}
\centering
\begin{threeparttable}
\begin{tabularx}{\textwidth}{@{} L l *{3}{>{$}l<{$}S} @{}}
\toprule
 {\bf Delta potential}  & {\bf QPSO update equation}\\
 \midrule
 Delta potential well & $x_i(t+1)=p(t)\pm\frac{\ln(1/u)}{2q\ln\sqrt{2}}\parallel x_i(t)-p(t)\parallel$\\
 \midrule
 Harmonic oscillator & $x_i(t+1)=p(t)\pm\frac{\sqrt{\ln1/u}}{0.47694q}\parallel x_i(t)-p(t)\parallel$\\
 \midrule
 Square well & $x_i(t+1)=p(t)+\frac{0.6574}{\xi q}\cos^{-1}(\pm\sqrt u)\parallel x_i(t)-p(t)\parallel$\\
\bottomrule
\end{tabularx}
\end{threeparttable}
\end{table}
 \end{document}

在此处输入图片描述

答案1

你在评论中写道,

我需要将“表 1:”加粗以符合 APA 格式

然后,您需要做的就是添加指令\captionsetup{labelfont=bf}那么,你需要做的就是在序言中正在加载caption包。

但是,你应该为自己(和你的读者)做更多的事情。为了使代码更易于维护,你应该删除很多多余的东西。你还应该通过在 displaymath 模式下渲染第二列中的方程式来使其更具可读性。并且请不要使用\parallel——至少在这种情况下不要使用;而是使用\lVertand \rVert。更好的是,定义一个\norm宏。最后,不要过度使用大胆的

您应该清理并简化文档的序言。我非常怀疑您目前加载的许多软件包是否真的需要。例如,该yfonts软件包提供文本模式的 fraktur 字体——您真的需要它们吗?

在此处输入图片描述

\documentclass[a4paper,12pt]{report}
\usepackage[american]{babel}
\usepackage[T1]{fontenc}
\usepackage{booktabs,tabularx}

\usepackage{mathtools}
\DeclarePairedDelimiter{\norm}{\lVert}{\rVert}

\usepackage{caption}
\captionsetup{labelfont=bf,skip=0.5\baselineskip,
              justification=raggedright,
              singlelinecheck=false}

\begin{document}
\begin{table}[!ht]
\caption{The QPSO update equations for different potential energy types}
\label{3wavfun}
\begin{tabularx}{\textwidth}{@{} >{\raggedright\arraybackslash}X >{$\displaystyle}l<{$} @{}}
\toprule
Delta potential  
& $QPSO update equation$\\
\midrule
Delta potential well 
& x_i(t+1)=p(t)\pm \frac{\ln(1/u)}{2q\ln\sqrt{2}} \norm{x_i(t)-p(t)}\\[3ex]

Harmonic oscillator 
& x_i(t+1)=p(t)\pm \frac{\sqrt{\ln(1/u)}}{0.47694q} \norm{x_i(t)-p(t)}\\[3ex]

Square well 
& x_i(t+1)=p(t)+ \frac{0.6574}{\xi q}\cos^{-1}(\pm\sqrt{u}\,) \norm{x_i(t)-p(t)}\\
\bottomrule
\end{tabularx}
\end{table}
\end{document}

相关内容