"및"에 대한 텍스트 모드를 갖는 방법 2024-6-17 • text-mode 나는 내 말을하려고 노력하고 있지만 "결과 "는 다음과 같습니다. 그리고 나는 이 웹사이트를 찾았습니다: 나는 추가하려고 \usepackage{textmode} 사용하면서 $\textquotedblleft$ Strawberry $textquotedblright$ 하지만 아래에 오류가 발생합니다. 답변1 textmode패키지가 아니기 때문입니다 . Detexify는 해당 명령을 \textquotedblleft일반 텍스트 모드에서 직접 사용할 수 있음을 나타냅니다. 예를 들어, \documentclass{article} \begin{document} \textquotedblleft Strawberry\textquotedblright \end{document} 준다 답변2 이를 수행하는 방법은 다음과 같습니다 csquotes. \documentclass{article} \usepackage[T1]{fontenc} \usepackage{csquotes} \begin{document} \enquote{Strawberry Fields Forever} \setquotestyle{french} \enquote{La Folle Complainte} \end{document} 답변3 많은 경우에 매우 유용함에도 불구하고 따옴표(또는 해당 패키지) \textquotedblleft는 필요하지 않습니다 .\textquotedblrightcsquotes \documentclass{article} \begin{document} ``Strawberry'' \end{document} 관련 정보