I have some problems of figures side by side.
- How to place figures like the "image1"? If someone could tell me how to manage them like "image2" (one figure occupies the body and has the same width as that of the body, while another occupies the margin and has the same width to that of the margin.), it could be perfect.
- How to place the figure caption directly under the figure? You can say the caption 2 of image 1 or 3 is at the wrong place.
Code: Select all
\documentclass[10pt,a4paper]{book}
% page layout
\usepackage[%
left=2cm,
right=7cm,
top=2cm,
bottom=2cm,
textheight=25cm,
textwidth=11cm,
marginparsep=1cm,
marginparwidth=5cm
]{geometry}
% Language settings
\usepackage[german,french]{babel}
% font and other typographic settings:
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Calibri-Light}
\usepackage{ragged2e}
\usepackage{ctex}
\usepackage{array,color}
% figures and the like:
\usepackage{graphicx}
\graphicspath{{fig/}}
\usepackage{caption}
\captionsetup[figure]{name={Figure.}}
\captionsetup{font={scriptsize,singlespacing},justification=RaggedRight,skip=2pt}
\usepackage{ifoddpage}
%or: \usepackage[strict]{changepage}
\usepackage{blindtext}
\begin{document}
\begin{figure}[t]
%\setcapwidth{0.6\textwidth}
\checkoddpage
\edef\side{\ifoddpage l\else r\fi}%
\makebox[\textwidth][\side]{%
\begin{minipage}[t]{0.59\textwidth}
\includegraphics[width=14cm]{1.1.jpg}
\caption{Caption 1}
\end{minipage}%
\hspace{1cm}%
\begin{minipage}[t]{0.59\textwidth}
\raggedleft
\includegraphics[width=3cm]{1.2.jpg}
\caption{Caption 2}
\label{fig:free-lunch}
\end{minipage}%
}%
\end{figure}
Today, four necktie knots are in widespread use. They are the four-in-hand knot, the half-Windsor knot, the Windsor knot and the Pratt knot. The first three are classic necktie knots that have been used for a long time. The Pratt knot is a more recent necktie knot that was introduced to the public in 1989.
Below shows a comparison table of the four necktie knots, together with the bow tie. It helps you find the answer to the first question that may come up in your mind -- Which necktie knots do I need? Click the links on the left to see the instructions on tying a certain knot.
\end{document}