需要“单”引号

需要“单”引号

我是 overleaf 的新手,遇到了一些看似很基本的问题……我的文档中出现了“单”引号。

我正在从 Microsoft Word 复制并粘贴。

(我已查看相关帖子,但我仍然遇到问题)

这是我的 MWE:

\documentclass[twocolumn]{article}       

\usepackage{graphicx}

\newcommand{\rvec}{\mathrm {\mathbf {r}}} 
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{amsmath}
\usepackage{xcolor}
\usepackage{color, soul}
\usepackage[symbol]{footmisc}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{tabularx}

\begin{document}

'these' don't work

\end{document}

任何建议都值得赞赏!

谢谢

编辑:我尝试实现@Bernard 的代码,但没有任何效果。以下是我尝试的:

\documentclass[twocolumn]{article}   

\newcommand{\rvec}{\mathrm {\mathbf {r}}} 
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{amsmath}
\usepackage{xcolor}
\usepackage{color, soul}
\usepackage[symbol]{footmisc}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{array}
\usepackage[autostyle]{csquotes}

\newcolumntype{L}{>{\raggedright\arraybackslash}X}

\usepackage[utf8]{inputenc}
\usepackage[british]{babel}

但它给了我一条错误消息:有什么建议吗?

答案1

看来,要么从键盘插入单引号(以 UTF8 输入编码),要么使用\textquote以下命令csquotes

\documentclass[twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[british]{babel}

\newcommand{\rvec}{\mathrm {\mathbf {r}}}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{amsmath}
\usepackage{xcolor}
\usepackage{color, soul}
\usepackage[symbol]{footmisc}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{tabularx}
\usepackage[autostyle]{csquotes}

\begin{document}

’these’ doesn't \textquote{work} without babel and csquotes,

but enter the quotes on keyboard: ‘these’ works

\end{document}

color无关:加载 则无需加载xcolor。此外,使用utf8编码时,加载soulutf8,而不是soul在此处输入图片描述

相关内容