如何像图片一样排版图片?

如何像图片一样排版图片?

在此处输入图片描述

我只是想像图片一样排版图片,左边一张,右边一张,右边一张比左边一张略低。

答案1

如果您只想了解如何定位图像和文本,您可以尝试 tikz 矩阵:

\documentclass{article}


\usepackage{graphicx}
\graphicspath{ {./images/} }

\usepackage{tikz}
\usetikzlibrary{matrix}


\begin{document}


\section{some caption}

some text

\begin{tikzpicture}
    \matrix[column sep=4cm, row sep=-1.5cm,
            nodes={align=left}]{
        \node {\includegraphics{qr.png} \\ Text A}; & \\
            & \node {\includegraphics{qr.png} \\ Text B};\\
        \node {\includegraphics{qr.png} \\ Text C}; & \\
            & \node {\includegraphics{qr.png} \\ Text D};\\
        \node {\includegraphics{qr.png} \\ Text E}; & \\
            & \node {\includegraphics{qr.png} \\ Text F};\\
    };
\end{tikzpicture}


\end{document}

但请注意,为了能够将文本与节点内的图像一起放在新行上,它必须左对齐,因此使用此方法不会获得居中文本。但无论如何,输出看起来如下所示:

图像矩阵

相关内容