ページ サイズとほぼ同じサイズのフロートがいくつかありますが、テキストに使用したいスペースが少しあります。LaTeX
図のみのページを作成せずに、ページの最大サイズを使用するにはどうすればよいですか?
\documentclass{article}
\usepackage{tabularx}
\usepackage{blindtext}
\usepackage{graphicx, graphics}
\usepackage[showframe]{geometry}
\begin{document}
\blindtext\par%
%
\begin{figure}
\centering
\includegraphics[%
width=\linewidth,%
height=15cm]
{example-image-a}
\caption{Figure's caption}
\label{fig:image-example-a}
\end{figure}%
%
\Blindtext
\end{document}
答え1
ページ上のテキストのデフォルトの割合は、大きな画像を含むページで使用可能なスペースよりも多くのスペースを必要とします。この比率は で変更できます\renewcommand{\textfraction}{0.07}
。次の操作を試してください。
\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{graphicx}
\renewcommand{\textfraction}{0.07} % allow minimal text w. figs
\usepackage{lipsum}
\begin{document}
\lipsum[66]
\begin{figure}[htb]
\centering
\includegraphics[%
width=\linewidth,%
height=15cm]
{example-image-a}
\caption{Figure's caption}
\label{fig:image-example-a}
\end{figure}%
\lipsum[66]
\end{document}
話題外ですが、パッケージがgraphicx
ロードされるgraphics
ので、これを再度実行しないでください。