我遇到了以下问题:我的 minipage 中并排放置了两张图片。令人烦恼的是,这会在 minipage 的两边产生边距,比正常的页面边距大得多。有没有办法减少这个边距?
我的代码:
\documentclass[12pt,a4paper]{article}
\usepackage[a4paper, left=2.5cm, right=2.5cm, top=2.5cm, bottom=2cm]{geometry}
\usepackage[ngerman]{babel}
\usepackage {hyperref}
\usepackage[section]{placeins}
\usepackage{parskip}
\usepackage{textcomp}
\usepackage{caption}
\captionsetup[figure]{font=footnotesize, labelfont=footnotesize}
\usepackage{graphicx}
\usepackage{adjustbox}
\usepackage{fontspec}
\usepackage[doublespacing]{setspace}
\setmainfont{Arial}
\graphicspath{{Grafiken/}}
\begin {document}
etc etc
\begin{figure} [hbt!]
\centering
\begin{minipage}{0.45\textwidth}
\centering
\includegraphics [width=.8\linewidth]{A1B1}
\caption{Aufschluss Westbahnhof}
\label {fig:A1B1}
\end{minipage}
\begin{minipage}{0.45\textwidth}
\centering
\includegraphics [width=.8\linewidth]{A1B2}
\caption{Einzelner Pflasterstein}
\label {fig:A1B2}
\end{minipage}
\end{figure}
etcetc
\end {document}
我基本上想调整小页面尺寸的边距,以便它更适合主文档的边距。
欢呼 Anton