색상이 변하지 않는 굵은 텍스트

색상이 변하지 않는 굵은 텍스트
\usepackage{color}
\usepackage{fontawesome}
\definecolor{DARKBLUE}{RGB}{8, 94, 179} 
\begin{tightemize}
\item Designed and developed a \textbf{\color{DARKBLUE}Python} based script to web scrape and index over \textbf{1.2 TB} of news, patent and market data. 
\end{tightemize}

텍스트 파이썬의 색상이 진한 파란색으로 변경되지 않습니다.

답변1

primary사용 중인 이 템플릿은 기본 글꼴에 특정 색상( 라고 함)을 할당합니다 . 이는 으로 재정의될 수 없습니다 \color. 해당 색상 없이 기본 글꼴을 다시 정의해야 합니다. 이 방법으로 누락된 굵은 글꼴에 대한 수정 사항을 포함할 수도 있습니다.

\documentclass{deedy-resume-openfont}

\setmainfont[
  Path = fonts/lato/,
  UprightFont = *-Lig,
  BoldFont = *-Bol,
  %Color=primary,
]{Lato}

\definecolor{DARKBLUE}{RGB}{8, 94, 179} 

\begin{document}

\begin{tightemize}
\item Designed and developed a \textbf{\color{DARKBLUE}Python} based script to web scrape and index over \textbf{1.2 TB} of news, patent and market data. 
\end{tightemize}

\end{document}

Overleaf의 데모

또는 기본 색상을 유지하려면 를 통해 색상을 추가할 수 있습니다 \addfontfeatures.

\documentclass{deedy-resume-openfont}

\setmainfont[
  Path = fonts/lato/,
  UprightFont = *-Lig,
  BoldFont = *-Bol,
  Color=primary,
]{Lato}

\definecolor{DARKBLUE}{RGB}{8, 94, 179} 

\begin{document}

\begin{tightemize}
\item Designed and developed a \textbf{\addfontfeatures{Color=DARKBLUE}Python} based script to web scrape and index over \textbf{1.2 TB} of news, patent and market data. 
\end{tightemize}

\end{document}

Overleaf의 데모

관련 정보