Problem mit der Bibliographie, wenn das Titelfeld eines bibliographischen Eintrags Großbuchstaben oder Abkürzungen enthält

Problem mit der Bibliographie, wenn das Titelfeld eines bibliographischen Eintrags Großbuchstaben oder Abkürzungen enthält

Wie kann ich das Problem bei der Ausgabe einer Bibliografie lösen, wenn Großbuchstaben in Kleinbuchstaben geändert werden?

Es sollte beispielsweise heißen:

AR Setoodeh und M Shojaee. Anwendung vonTW-DQMethode zur nichtlinearen freien Schwingungsanalyse vonFGKohlenstoffnanoröhren-verstärkte Verbundviereckplatten. Thin-Walled Structures, 108:1–11, 2016.

aber es hat gezeigt:

AR Setoodeh und M Shojaee. Anwendung vontw-dqMethode zur nichtlinearen freien Schwingungsanalyse vonfgKohlenstoffnanoröhren-verstärkte Verbundviereckplatten. Thin-Walled Structures, 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}

Außerdem ist meine Bib-Referenzdatei wie folgt:

%%%%MeineReferenzen.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}
}

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

Antwort1

Was Sie erleben, ist, dass einige BibTeX-Bibliographiestile - einschließlich des plainStils, der in dem von Ihnen geposteten Beispielcode verwendet wird - sogenannteSatzstilzum Inhalt des titleFeldes für Einträge vom Typ @article(und @miscund@unpublished übrigens auch). „Satzstil“ bedeutet in der englischen Sprachpraxis, dass Großbuchstaben erhalten bleiben (also nicht in Kleinbuchstaben umgewandelt werden)nur wennSie stehen ganz am Anfang des Feldes oder nach einem „großen“ Satzzeichen wie ., :, ?, und !.

Um die Anwendung des Satzstils auf den Inhalt destitle Felds zu überschreiben, müssen die Wörter, deren Buchstabennichtin Kleinbuchstaben umgewandelt werden, müssen in geschweifte Klammern eingeschlossen werden. Wenn Sie diese Überlegungen auf Ihren Eintrag anwenden, sollten Sie an zwei Stellen geschweifte Klammern einfügen:

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

verwandte Informationen