我必须将图形标题的字体类型更改为无衬线,因为这是我必须提交的 IEEE 论文的要求。
我不知道该怎么做。
我到处寻找答案,但我能找到的只是将字体更改为粗体或/和斜体的示例。
我必须将其更改为无衬线字体。
这就是我所拥有的:
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{caption}
\begin{document}
\begin{figure} [H]
\centering
\captionsetup{justification=centering}
\includegraphics[width = 8 cm]{Figures/figure.PNG}
\caption{blah blah blah}
\label{fig:label}
\end{figure}
\end{document}
是否有一个命令/包可以用来定义任何单个图形的字体或简单地定义序言中所有图形的字体类型?
答案1
欢迎来到德克萨斯州!
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{caption}
\begin{document}
\begin{figure}[h]
\centering
\captionsetup{justification=centering,font=sf}
\includegraphics[width = 8 cm]{Figures/figure.PNG}
\caption{blah blah blah}
\label{fig:label}
\end{figure}
\end{document}
这就是你要找的!;D