헤드라인에서 inconsolata 패키지 비활성화

헤드라인에서 inconsolata 패키지 비활성화
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{inconsolata}

\usepackage{listings}

\lstdefinestyle{General} {
    basicstyle=\small\ttfamily
}

\lstset{style=General}

\begin{document}

\chapter{MyChapter with some \texttt{inline text}}
Text with \lstinline|inline text|

\end{document}

inconsolata인라인 텍스트와 목록에 이 글꼴을 사용하고 있습니다 . 저는 \texttt장 헤드라인에도 인라인 텍스트를 사용하고 있습니다(왜냐하면더 저렴한 헤드라인 내부를 사용하면 \lstinline내 문서에 오류가 발생합니다 \texttt.). 글꼴은 멋져 보이지만 일반 글꼴 크기는 나에게 너무 무거워 보입니다. 그래서 목록의 글꼴 크기를 \small.

장 내의 글꼴 크기를 줄이거 \textttinconsolata장 헤드라인에서 패키지를 비활성화하는 방법이 있습니까(없으면 괜찮아 보임)?

답변1

inconsolata는 글꼴 크기를 조정하는 데 사용할 수 있는 배율 인수를 알고 있습니다.

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[scale=0.94]{inconsolata} %or some other value

\usepackage{listings}

\lstdefinestyle{General} {
    basicstyle=\ttfamily
}

\lstset{style=General}

\begin{document}

\chapter{MyChapter with some \texttt{inline text} \textmd{\texttt{inline text}}}
Text with \texttt{inline text} \lstinline|inline text|

\end{document}

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

관련 정보