Latex同时使用中英文双语图表名称(中英文双标题)+更改图表冒号为空格
Latex同时使⽤中英⽂双语图表名称(中英⽂双标题)+更改图
表冒号为空格
1升等于多少毫升?
⽤Latex写论⽂时,可能会遇到使⽤中英⽂同时命名图表标题的情况(中英⽂双标题)。
建议使⽤caption和bicaption(作为caption的扩展包)。或者只使⽤ccaption包也可以。代码如下:
2023元旦放假>源于历史故事的成语
\usepackage{caption}
\usepackage{bicaption}%属于caption的扩展包,有中英⽂双语
\usepackage{graphicx,subfigure}%插⼊图⽚需要的包
\captionsetup[figure][bi-second]{name=Figure}%设置英⽂图开头为Figure
\captionsetup{labelsep=space}%bicaption原本是“图:”的格式,现在将冒号改成空格
%下⾯是插⼊图⽚,以四个2*2的图组成⼀张图为例。
\begin{figure}[htbp]%h,t,b,p分别代表here, top, bottom, page
\centering%居中
税务自查报告范文\subfigure[⼩图1名字]{
\begin{minipage}{0.4\textwidth}
\includegraphics[width = 1\textwidth]{需要引⽤的⼩图1的⽂件名称.png}
\end{minipage}
}
\subfigure[⼩图2名字]{
\begin{minipage}{0.4\textwidth}
\includegraphics[width = 1\textwidth]{需要引⽤的⼩图2的⽂件名称.png}
\end{minipage}
}
\subfigure[⼩图3名字]{
\begin{minipage}{0.4\textwidth}
标语大师\includegraphics[width = 1\textwidth]{需要引⽤的⼩图2的⽂件名称.png}
\end{minipage}
}
\subfigure[⼩图4名字]{
\begin{minipage}{0.4\textwidth}
\includegraphics[width = 1\textwidth]{需要引⽤的⼩图2的⽂件名称.png}
\end{minipage}
}
\bicaption{中⽂图名}{英⽂图名}坎迪斯-斯瓦内普尔
\label{fig:定义的引⽤名字}
\end{figure}
效果如图:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。