그림 캡션 - 라벨 글꼴

그림 캡션 - 라벨 글꼴

내 논문에는 라벨 캡션을 원합니다:

  • sc 글꼴이 있는 것

  • 그리고 그것은 대담해야 한다

다음과 같은 최소 작업 예제를 고려하십시오.

\documentclass{article}

\usepackage{caption}% Required for customising the captions
\captionsetup{justification=justified,
   format=plain,font=small,labelfont=sc,margin=50pt}
   
\usepackage{graphicx}

\begin{document}
\begin{figure}[th]
\centering
\includegraphics[width=3cm]{example-image-a}
\caption{This is a Test Test. }
\label{}
\end{figure}


\end{document} 

이 그림의 캡션에는 올바른 레이블 글꼴 sc가 있습니다.

여기에 이미지 설명을 입력하세요

내가 지금 추가하면

labelfont = bf 

캡션 설정에는 굵은 글꼴만 표시됩니다.

여기에 이미지 설명을 입력하세요

두 가지(sc + 굵은 글씨)를 모두 얻을 수 있는 방법이 있나요?

답변1

다시 발견한 바와 같이 Computer Modern(다른 선택이 없을 경우 사용되는 기본 글꼴)은~ 아니다글꼴 속성의 작은 대문자/굵게 조합이 특징입니다.

작은 대문자/굵은 글꼴 속성 조합과 작은 대문자/이탤릭체 및 (숨이 막힐 듯한) 작은 대문자/굵은 글꼴/이탤릭체를 제공하는 글꼴 모음 중 하나가 Times Roman입니다. newtxtext및 패키지를 로드하여 newtxmath텍스트와 수학 Times Roman 글꼴을 동시에 해석할 수 있습니다. 결과는 아래 "그림 5"를 참조하세요.

하지만 두 가지 유형의 활자체 강조(볼드체와 소문자)를 함께 사용하는 것이 생산적인지 자문해 보세요. 두 가지 유형의 강조를 결합하면 일반적으로 분노하는 불필요한 소리를 지르는 것처럼 보일 수 있습니다.

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage{newtxtext,newtxmath}
\usepackage[labelsep=period]{caption}

\begin{document}
\setcounter{figure}{-1}
\begin{figure}[th]
\caption{This is a simple test. }

\medskip

\captionsetup{labelfont={bf}}
\caption{This is a simple test. }

\captionsetup{labelfont={sc}}
\caption{This is a simple test. }

\captionsetup{labelfont={it}}
\caption{This is a simple test. }

\medskip

\captionsetup{labelfont={bf,it}}
\caption{This is a simple test. }

\captionsetup{labelfont={sc,bf}}
\caption{This is a simple test. }

\captionsetup{labelfont={sc,it}}
\caption{This is a simple test. }

\medskip

\captionsetup{labelfont={sc,bf,it}}
\caption{This is a simple test. }
\end{figure}
\end{document}

관련 정보