1、 表格和图标标题 没有了蓝色
首先是不能添加\caption这个包,添加了之后原来access的模板中FIGURE 1 字样是蓝色加粗会变成黑色字体:
代码如下:
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage[caption=false]{subfig}
\usepackage{caption,setspace}
\captionsetup{font={sf,small,stretch=0.80},labelfont={bf,color=accessblue}}
\usepackage{textcomp}
\def\BibTeX{
{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{figure*}[!t]
\centering
%\vspace*{-.02in}
\subfloat[Performance comparison when x=t]{
\hspace*{-.1in}
\includegraphics[scale=0.33]{fig1.pdf}
\hspace*{-.1in}
\includegraphics[scale=0.33]{fig2.pdf}
\label{p_D_req_100}
}
% \vspace*{-.14in}
\hfill
\subfloat[Performance comparison when x=u]{
\hspace*{-.1in}
\includegraphics[scale=0.33]{fig3.pdf}
\hspace*{-.1in}
\includegraphics[scale=0.33]{fig4.pdf}
\label{p_D_req_400}
}
% \vspace*{-.14in}
\hfill
\subfloat[Performance comparison when x=z]{
\hspace*{-.1in}
\includegraphics[scale=0.33]{fig5.pdf}
\hspace*{-.1in}
\includegraphics[scale=0.33]{fig6.pdf}
\label{p_D_req_1000}
}
\caption{the EE (left) and xxxx (right) of cat cat cat load.}
\label{fig:p_graph}
\end{figure*}
2、表格和图的标题
比如 本应该为 FIGURE. 结果为Figure: , 修改如下:
1、把Fig:变成Fig.
\captionsetup[figure]{name={Fig.},labelsep=period}
2、把TABLE:变成TABLE
\captionsetup[table]{name={TABLE},labelsep=space}
%space去掉点
%period加点
%不加space、period这两个就是冒号
3、无法设置斜体
这可能是fontspec的bug,一旦加载了fontspec,\emph就会失效。只需在document环境前面加上 \let\emph\textit 即可
参考链接: