「」と「」のテキストモードを設定する方法 2024-6-17 • text-mode 私は自分の言葉で"and を使おうとしています"が、出力は次のようになります: そして私はこのウェブサイトを見つけました: 追加してみる \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 引用符に\textquotedblleftand は必要ありません(多くの場合非常に便利ですが、パッケージ自体も必要ありません)。\textquotedblrightcsquotes \documentclass{article} \begin{document} ``Strawberry'' \end{document} 関連情報