专注【中高档】餐饮家具定制
当前位置: 主页 > 客户案例 > 案例展示

如何在latex单栏放两张并列的图呢?
来源: / 发布时间:2025-06-20 08:45:11 / 浏览次数:


可以使用 \subfloat实现子图的排版,但是注意两个\subfloat 之间 不要有 空行,不然就变成竖直排版了\documentclass[twocolumn]{article} \usepackage{graphicx} \usepackage{lipsum} \usepackage{float} \usepackage{subfig} \begin{document} \lipsum[1] \begin{figure}[h] \centering \subfloat[xyz] { \includegraphics[width=0.45\linewidth]{example-image-a} \label{fig1:1} } \subfloat[abc] { \includegraphics[width=0…。

如何在latex单栏放两张并列的图呢?