我正在用 IEEE 格式的 LaTeX 写一篇期刊。当我制作图题时,它与文档的其余部分(Times)使用相同的字体。但是,我希望所有图题都是 Helvetica 类型,大小为 8pt。
\documentclass[journal]{IEEEtran}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\title{Test}
\author{Me}
\date{June 2021}
\begin{document}
\renewcommand\thepage{10.\arabic{page}}
\maketitle
\section{Introduction}
\newpage
\section{page 1}
\newpage
\section{page 2}
\begin{figure}[h]
\centering
\includegraphics[width=5cm]{example-image-a}
\caption{Caption}
\label{fig:my_label}
\end{figure}
\end{document}
是否可以将整个文档中的所有图形标题字体都设为 Helvetica 字体、大小为 8pt,而不改变正文的字体和大小?
答案1
希望以下修改MWE
能帮到你:
\documentclass[journal]{IEEEtran}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[scaled=.90]{helvet}
\usepackage{caption}
\DeclareCaptionFont{xipt}{\fontsize{9}{11}\sf\selectfont}
\captionsetup[figure]{font=xipt,labelfont=bf}
\title{Test}
\author{Me}
\date{June 2021}
\begin{document}
\renewcommand\thepage{10.\arabic{page}}
\maketitle
\section{Introduction}
\newpage
\section{page 1}
\newpage
\section{page 2}
\begin{figure}[h]
\centering
\includegraphics[width=5cm]{example-image-a}
\caption{Caption}
\label{fig:my_label}
\end{figure}
\end{document}
我从一位伟大的人的建议中得到了这个Mr Gonzalo Medina
(感谢他)