서지항목의 ​​제목란에 대문자나 약어가 있을 때 참고문헌에 관한 문제

서지항목의 ​​제목란에 대문자나 약어가 있을 때 참고문헌에 관한 문제

대문자가 소문자로 바뀌는 경우 참고문헌 출력 시 발생하는 문제는 어떻게 해결해야 합니까?

예를 들어 다음과 같아야 합니다.

AR Setoodeh와 M Shojaee. 적용TW-DQ비선형 자유진동 해석 방법FG탄소나노튜브 강화 복합 사각판. 얇은 벽 구조, 108:1-11, 2016.

하지만 다음과 같이 표시되었습니다.

AR Setoodeh와 M Shojaee. 적용tw-dq비선형 자유진동 해석 방법fg탄소나노튜브 강화 복합 사각판. 얇은 벽 구조, 108:1-11, 2016.

 ‎\documentclass{book}‎
    ‎\setcounter{tocdepth}{3}‎
    ‎\begin{document}‎
    The DQ method as an efficient and accurate numerical tool is
    applied to discretize the nonlinear governing differential equations ‎
    and the related boundary conditions in the spatial domain.
    The new transformed weighting coefficients are developed and
    introduced to make the procedure more systematic for the case of
    quadrilateral plates. For this purpose, a two-dimensional geometric‎
     transformation is constructed to express the derivatives in
    the physical domain in term of the derivatives in the computational ‎
     domain x-y (see Fig. 3). The transformation procedure for
    the first- and second-order derivatives of an arbitrary function is
    presented in Appendix A.   \‎cite{setoodeh2016application}‎
    {
    ‎\bibliographystyle{plain}
    ‎\bibliography{MyReferences}‎
    }
    ‎\end{document}

또한 내 턱받이 참조 파일은 다음과 같습니다.

%%%%MyReferences.bib

@article{setoodeh2016application,
  title={Application of TW-DQ method to nonlinear free vibration analysis of FG carbon nanotube-reinforced composite quadrilateral plates},
  author={Setoodeh, AR and Shojaee, M},
  journal={Thin-Walled Structures},
  volume={108},
  pages={1--11},
  year={2016},
  publisher={Elsevier}
}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

답변1

현재 겪고 있는 문제는 다음을 포함한 일부 BibTeX 참고문헌 스타일입니다.plain 귀하가 게시한 예제 코드에서 사용되는 스타일을 포함하여 일부 BibTeX 참고문헌 스타일이 소위 적용된다는 것입니다.문장 스타일title유형 항목 의 필드 내용 @article( @misc@unpublished . "문장 스타일"(영어 연습에서)은 대문자가 유지됨(즉, 소문자로 변환되지 않음)을 의미합니다.경우에만.이는 필드의 시작 부분이나 , :, ?및 와 같은 "주요" 구두점 뒤에 나타납니다 !.

내용에 문장 스타일 적용을 무시하려면title 문자가 포함된 단어를~ 아니다소문자로 변환하려면 중괄호로 묶어야 합니다. 이러한 생각을 항목에 적용하면 다음 두 위치에 중괄호를 삽입해야 합니다.

title={Application of {TW-DQ} method to nonlinear free vibration analysis 
       of {FG} carbon nanotube-reinforced composite quadrilateral plates},

관련 정보