私は、4 つの図を配置する境界線 (4) 付きの横長の PDF を作成しようとしています。理想的には、線の幅は 3 ポイントです... 考えている内容の JPG を添付しました。図を領域 ad に配置したいと思います。
誰か私に出発点を与えてくれませんか?
答え1
次の例では、\FramedImage
1 つのオプション引数 ( のオプション引数で使用されるオプション) と 1 つの必須引数 (画像ファイルの名前) を持つ新しいコマンドを定義しました。このコマンドは、フレームを取得するために、 で囲まれた\includegraphics
内にその内容を配置します。minipage
\fbox
\documentclass{article}
\usepackage[a4paper,margin=2cm,landscape]{geometry}
\usepackage[demo]{graphicx}
\newcommand\FramedImage[2][]{%
\setlength\fboxsep{2pt}% change according to needs
\setlength\fboxrule{3pt}%
\noindent\fbox{%
\begin{minipage}[c][\dimexpr.5\textheight-1.5\fboxrule-2\fboxsep\relax][c]{\dimexpr.5\textwidth-1.5\fboxrule-2\fboxsep\relax}
\centering
\includegraphics[#1]{#2}
\end{minipage}}%
}
\begin{document}
\thispagestyle{empty}
\FramedImage{image1}\hspace*{-3pt}\FramedImage{image2}\\[-3pt]\offinterlineskip
\FramedImage{image3}\hspace*{-3pt}\FramedImage{image4}
\end{document}
オプションdemo
は、graphicx
実際の数字を黒い四角形に置き換えるだけです。ない実際のドキュメントではそのオプションを使用します。