URW Nimbus Roman 글꼴을 얻으려면 어떻게 해야 하나요?

URW Nimbus Roman 글꼴을 얻으려면 어떻게 해야 하나요?

이 글에 사용된 글꼴이 정말 마음에 들어서 내 문서에도 사용하고 싶습니다. 내가 어떻게 할 수 있는지 아는 사람이 있나요?

편집: 글꼴이 URW Nimbus Roman이라는 것을 알았습니다(알아내는 방법을 알려주는 게시물을 알려주셔서 감사합니다). 그래서 제 질문은 이 글꼴을 어떻게 구할 수 있느냐는 것입니다. 어떤 패키지 등을 로드해야 합니까? 죄송합니다. 여기 완전 아마추어입니다! 도와 주셔서 감사합니다!

답변1

Mac용 LibreOffice의 기본 옵션인 것으로 보이는 글꼴인 Liberation Serif와 비슷하게 생겼으며, Times New Roman과 모양이 상당히 유사합니다.

XeLaTeX는 모든 시스템 글꼴을 사용할 수 있으므로 원하는 글꼴이 설치되어 있으면 다른 글꼴과 마찬가지로 문서에 해당 글꼴을 포함시키기만 하면 됩니다. 이는 언어별로 수행할 수도 있습니다. 예를 들어 문서의 태국어 텍스트에 Angsana New 글꼴을 사용하려는 경우 다음과 같이 정의할 수 있습니다.

\usepackage{polyglossia}
\setmainlanguage{english}
\setotherlanguage{thai}
\newfontfamily\thaifont[Script=Thai, Renderer=AAT]{Angsana New}

XeTeX 또는 LuaTeX와 함께 패키지를 사용하면 fontspec시스템에 설치된 모든 TTF 글꼴을 사용할 수도 있습니다. 자세한 내용은 여기를 참조하세요.LaTeX에 TTF 글꼴 설치

URW Nimbus Roman 글꼴은 여기에서 다운로드할 수 있는 것 같습니다:https://www.fontsquirrel.com/fonts/nimbus-roman-no9-l

답변2

TeXLive에는 Nimbus 제품군용 글꼴이 포함되어 있습니다(https://ctan.org/pkg/nimbus15). 다른 솔루션 위에 추가 기능으로 로드하는 것이 더 적합할 수 있습니다. 설명서를 읽어보세요.

\documentclass[]{article}

\usepackage{iftex}

\iftutex
  %% LuaLaTeX or XeLaTeX
  \usepackage{fontspec}
  \setmainfont{ztm}
\else
  %% pdfLaTeX
  \usepackage{nimbusserif}
\fi

\begin{document}
\section{Introduction}
In this article I address the question whether, and if so in what sense, logic
can be said to have normative authority over reasoning. I claim that there is an
interesting sense in which logic can indeed be said to be normative for
reasoning. To substantiate my claim, I proceed as follows. I begin by laying
out Gilbert Harman's influential skeptical challenge to the thesis that logic
and norms of reasoning are interestingly related. According to Harman, once we
realize that principles of deductive logic are not nrms of reasoning in and of
themselves, a gap opens up between the two. Thus, a response to Harman's
challenge would consist in what John MacFarlane (2004) has fittingly dubbed a
`bridge principle'---a general principle articulating a substantive and
systematic link between logic
\end{document}

LuaLaTeX를 사용한 결과:

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

관련 정보