在 LaTeX 中,正確輸入雙引號有以下幾種方法:
1. 使用鍵盤上的反引號和單引號:在左邊界處使用 `(反引號)標記起始雙引號,在右邊界處使用 '(單引號)標記結束雙引號。例如:
``這是一對雙引號''
2. 使用 `\quotedblbase` 和 `\textquotedbl` 命令:`\quotedblbase` 用于起始雙引號,`\textquotedbl` 用于結束雙引號。例如:
\quotedblbase 這是一對雙引號\textquotedbl
3. 使用 `csquotes` 宏包:`csquotes` 宏包提供了更強大的引用功能,可以自動識別文本區域中的引號。首先在導言區添加 `\usepackage{csquotes}`,然后使用 `\enquote{}` 命令來包裹引用的文本。例如:
\usepackage{csquotes} ... \enquote{這是一對雙引號}
無論您選擇哪種方法,都可以正確地在 LaTeX 中輸入雙引號。