类似“«»”的标记

类似“«»”的标记

可能重复:
LaTeX 中的 Guillemets («»)

我需要在我的 Latex 文档中创建一些像这样的引号:“« »”。

      \begin{document}

       Some text with quote marks like "« »"

      \end{document}  

我能怎么做?

答案1

您应该使用 T1 编码:

\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}

Some text with quote marks like ``<<'' and ``>>''

\end{document}

在此处输入图片描述

如果您也将输入文件编码为 UTF-8,则可以使用直接输入:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}

Some text with quote marks like ``«'' and ``»''

\end{document}

相关内容