如何自定义bclogo框的高度?

如何自定义bclogo框的高度?

这里有两个bclogo高度不一样的盒子。

\documentclass[xcolor=table,usenames,dvipsnames,svgnames]{beamer}

\usepackage[tikz]{bclogo}

\begin{document}
\begin{frame}{}
\begin{columns}
    \column{.5\linewidth}
    \begin{bclogo}[logo=\bcquestion, couleurBarre=blue, noborder=true, 
        couleur=SkyBlue]{$\alpha$}
        \begin{equation*}
        \left\Vert x-y\right\Vert_{2}
        \end{equation*} 
    \end{bclogo}
    \column{.5\linewidth}
    \centering
    \begin{bclogo}[logo=\bcquestion, couleurBarre=blue, noborder=true, 
        couleur=SkyBlue]{$\beta$}
        \begin{equation*}
        \sum\limits_{N}\left\Vert x-y\right\Vert_{2}
        \end{equation*} 
    \end{bclogo}
\end{columns}
\end{frame}
\end{document}

我想增加左侧(较薄)盒子的高度,使其与右侧(较厚)盒子的高度相同。在软件包的法语手册中搜索“rembourrage”(填充)没有找到任何结果。

该怎么办呢?

答案1

一种独立于 的临时解决方案bclogo是使用\vphantom

\documentclass[xcolor=table,usenames,dvipsnames,svgnames]{beamer}

\usepackage[tikz]{bclogo}

\begin{document}
\begin{frame}{}
\begin{columns}
    \column{.5\linewidth}
    \begin{bclogo}[logo=\bcquestion, couleurBarre=blue, noborder=true, 
        couleur=SkyBlue]{$\alpha$}
        \begin{equation*}
         \vphantom{\sum\limits_{N}}\left\Vert x-y\right\Vert_{2}
        \end{equation*} 
    \end{bclogo}
    \column{.5\linewidth}
    \centering
    \begin{bclogo}[logo=\bcquestion, couleurBarre=blue, noborder=true, 
        couleur=SkyBlue]{$\beta$}
        \begin{equation*}
        \sum\limits_{N}\left\Vert x-y\right\Vert_{2}
        \end{equation*} 
    \end{bclogo}
\end{columns}
\end{frame}
\end{document}

在此处输入图片描述

相关内容