增加分数线上方和下方的间距(vinculum),并使分数更粗

增加分数线上方和下方的间距(vinculum),并使分数更粗

我想增加分数线和数字(分子、分母)之间的间距,并使分数更粗。我想要相同的线条粗细。我从网站上得到的一个解决方案是过度增加线条粗细,但会将数字上下移动。另外,如何增加分数线的长度?

\documentclass[12pt,addpoints]{exam}
\usepackage{amsmath}

%************needed for fraction line
\def\oover{\abovewithdelims..0.2cm}
%**********************

%*********needed to make change font size
\makeatletter
\newcommand\HUGE{\@setfontsize\Huge{40}{60}}
\makeatother   
%*****************
\def\mathLarge#1{\mbox{\LARGE $#1$}}


\begin{document}

\hfill { \textbf{Mark:  {{\HUGE  $ 12 \oover 40 $}}   }
    
 \bf{{   \HUGE  $ \genfrac {}{} {1.5pt}{}   {a} {40}$}} 
  
    
\end{document}

答案1

我不知道我是否理解正确,但这里 \myfrac 允许您根据需要设置厚度、长度以及与分数线的距离。

     \documentclass[12pt,addpoints]{exam}
        \usepackage{amsmath}        
        \newcommand\myfrac[2]{\genfrac{}{}{2pt}{0}{#1}{\hspace*{10pt}#2\hspace*{10pt}}}
        
   \begin{document}
        \Huge 
        $A\genfrac{}{}{3pt}{0}{ a}{\hspace*{1cm}40\hspace*{1cm}}\cdot
        \myfrac{a}{b}\cdot
        \genfrac{}{}{3pt}{1}{ a}{40}$
        $\myfrac{a}{40}$        
    \end{document}

在此处输入图片描述

附录。

您可能想要使用tikz。您可以根据需要调整参数。请注意,效果取决于字体的大小。此外,太粗的线条(>2pt)会大大增加与分数线的距离。

如果您想了解tikz这种情况下的工作方式,您可以\path用 替换该命令\draw

\documentclass[12pt,addpoints]{exam}
        \usepackage{amsmath}
        \usepackage{tikz}

        \newcommand\myfrac[5]{%
            \genfrac{}{}{#1}{0}{%            
            \begin{tikzpicture}[baseline=0pt]
                \path[line width=0pt] (0,0) -- (0,#3) -- (#2,#3) -- (#2,0) -- (0,0);%
                \node at (#2/2, #3/2) {$#4$};%
            \end{tikzpicture}}
            {%
            \begin{tikzpicture}[baseline=-#3-#1]
                \path[line width=0pt] (0,0) -- (0,#3) -- (#2,#3) -- (#2,0) -- (0,0);%
                \node at (#2/2, #3/2) {$#5$};%
            \end{tikzpicture}}
            }
            
        \begin{document}
        \Huge
        
        % the thickness of the fractional line
       $$\myfrac{0.2pt}{0pt}{0pt}{a}{b}\cdot
         \myfrac{1pt}{0pt}{0pt}{a}{b}\cdot
         \myfrac{2pt}{0pt}{0pt}{a}{b}\cdot
         \myfrac{4pt}{0pt}{0pt}{a}{b}$$

        % the length of the fractional line
       $$\myfrac{1pt}{20pt}{0pt}{a}{b}\cdot
         \myfrac{1pt}{40pt}{0pt}{a}{b}\cdot
         \myfrac{1pt}{60pt}{0pt}{a}{b}\cdot
         \myfrac{1pt}{80pt}{0pt}{a}{b}$$

        % the distance between the fractional line and the numbers
       $$\myfrac{1pt}{0pt}{0pt}{a}{b}\cdot
         \myfrac{1pt}{0pt}{40pt}{a}{b}\cdot
         \myfrac{1pt}{0pt}{60pt}{a}{b}\cdot
         \myfrac{1pt}{0pt}{90pt}{a}{b}$$

    \end{document} 

在此处输入图片描述

笔记。

至于与分数线的距离,根据@barbara beeton - 这是一个TeX错误。请参阅她的评论回答

相关内容