在 LaTeX 中,輸出雙引號有幾種不同的方式:
1. 使用兩個反引號 \` 和兩個單引號 \' :
``quoted text''
這樣會得到普通的雙引號效果。
2. 使用 \textquotedbl 命令:
\textquotedbl quoted text\textquotedbl
這將使用指定的字體渲染雙引號。
3. 使用 \enquote 宏包:
首先,你需要在文檔的導言部分添加 `\usepackage{csquotes}`。然后,在文中使用 \enquote 命令:
\enquote{quoted text}
這將根據當前語言環境選擇合適的引號樣式。
這些方法可以根據你的具體需求選擇使用。