将子浮动的子标题放置在右侧

发布于 2024-09-10 13:44:51 字数 28 浏览 4 评论 0原文

如何将子浮点(子图)的子标题放置在其右侧?

How can I place subcaptions of subfloats (subfigures) on their right side?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

翻身的咸鱼 2024-09-17 13:44:51

您可能想探索 sidecap 包。我不知道它对子图形是否表现良好......

You might want to explore the sidecap package. Whether it behaves nicely with subfigures, I don't know...

又怨 2024-09-17 13:44:51

您可以将您的 subfig 放在带有图形的 minipage 旁边。

例如:

\begin{figure}
    \begin{minipage}{1in}
        \graphic
    \end{minipage}
    \begin{minipage}{1in}
        \begin{subfloat}[This is a caption]
        ~
        \end{subfloat}
    \end{minipage}
\end{figure}

其中 \graphic 是图像的占位符(我使用 \def\graphic{\rule{1in}{1in}}

我不知道如何然而,以确保空的子浮动为标题提供足够的空间。

You could put your subfig next to a minipage with the graphic.

For example:

\begin{figure}
    \begin{minipage}{1in}
        \graphic
    \end{minipage}
    \begin{minipage}{1in}
        \begin{subfloat}[This is a caption]
        ~
        \end{subfloat}
    \end{minipage}
\end{figure}

Where \graphic is a placeholder for your image (I used \def\graphic{\rule{1in}{1in}})

I don't know how to ensure that the empty sub-float gives enough space for the caption, however.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文