참조 bibtext에 $\Delta $를 입력하면 작은 델타가 출력됩니다. 그것을 수정하는 방법?

참조 bibtext에 $\Delta $를 입력하면 작은 델타가 출력됩니다. 그것을 수정하는 방법?

$\Delta$참조를 입력하면 bibtext출력이 작습니다 $\delta$. 그것을 수정하는 방법?

답변1

내 생각에 이 동작은 사용 중인 bibtex 스타일 파일에 따라 달라집니다. 어떤 경우든 대문자 $\Omega$를 중괄호로 캡슐화하여 강제로 유지하도록 할 수 있습니다.

{$\Omega$}

답변2

실제로 케이스는 표준 스타일에 따라 변경됩니다. 중괄호를 사용하여 대소문자가 변경되지 않도록 보호해야 합니다.

예:

\begin{filecontents*}{\jobname.bib}
@article{test,
  author={A. Uthor},
  title={Title with $\Delta$-Cauchy},
  journal={Journal},
  year=2020,
}
\end{filecontents*}

\documentclass{article}

\begin{document}

\cite{test}

\bibliographystyle{plain}
\bibliography{\jobname}

\end{document}

환경 filecontents*은 예제를 독립적으로 만들기 위해 사용됩니다.

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

턱받이 항목을 다음으로 수정하세요.

@article{test,
  author={A. Uthor},
  title={Title with {$\Delta$-Cauchy}},
  journal={Journal},
  year=2020,
}

즉, 대문자를 유지하려는 단어 주위에 중괄호를 추가하십시오.

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

관련 정보