透過下面的程式碼,我嘗試更改字幕文字的字體、大小和顏色。
\usepackage[table]{xcolor}
\definecolor[named]{myColorMainB}{RGB}{174,49,54}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage[font=footnotesize,labelfont={color=myColorMainB,bf}]{caption}
\renewcommand{\thefigure}{\textcolor{myColorMainB}{\sffamily\thechapter.\arabic{figure}}}
\renewcommand{\figurename}{\textcolor{myColorMainB}{\sffamily Figure}}
我希望所有帶有 sffamily 字體的文字(字體和 labelfont)的尺寸都小於生成的字體。此外,labelfont(圖 1.1)應該是粗體,並且顏色在 myColorMainB 中定義。
但這就是我得到的輸出 此外,無論我在“font=”選項中插入什麼命令都無法更改文字的大小。
你能告訴我如何更改標籤文字和冒號的顏色、正文的字體和字體大小嗎?