答案1
这是一个使用宏的解决方案,我称之为\kludgequote
。请注意,它不需要babel
和csquotes
包。
下面的代码可以在 XeLaTeX 和 LuaLaTeX 下运行。要在 pdfLaTeX 下运行,只需将其替换\usepackage{fontspec}
为\usepackage[T1]{fontspec}
。
%!TEX TS-program = xelatex
\documentclass{article}
\usepackage{fontspec}
\usepackage{mathtools} % for "\prescript" macro
\newcommand\kludgequote[1]{%
\prescript {} {\text{\normalsize„}} {\mkern-1.5mu#1}
{\vphantom{#1}}^{\mkern-1.5mu\text{\normalsize\raisebox{-0.5ex}{“}}}}
\begin{document}
„hhh“
„$\frac{1}{2}$“
$\kludgequote{\frac{1}{2}}$
$\kludgequote{\dfrac{1}{2}}$
\end{document}