![참조 bibtext에 $\Delta $를 입력하면 작은 델타가 출력됩니다. 그것을 수정하는 방법?](https://rvso.com/image/420027/%EC%B0%B8%EC%A1%B0%20bibtext%EC%97%90%20%24%5CDelta%20%24%EB%A5%BC%20%EC%9E%85%EB%A0%A5%ED%95%98%EB%A9%B4%20%EC%9E%91%EC%9D%80%20%EB%8D%B8%ED%83%80%EA%B0%80%20%EC%B6%9C%EB%A0%A5%EB%90%A9%EB%8B%88%EB%8B%A4.%20%EA%B7%B8%EA%B2%83%EC%9D%84%20%EC%88%98%EC%A0%95%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95%3F.png)
$\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,
}
즉, 대문자를 유지하려는 단어 주위에 중괄호를 추가하십시오.