みなさんこんにちは。私は自分の作品に写真を入れようとしています。設定は次のとおりです。
\documentclass[12pt,a4paper,twoside,openright]{report}
\usepackage[dvips]{graphicx}
\usepackage{chngpage}
\usepackage{tabularx}
\usepackage{subfigure}
\usepackage{afterpage}
\usepackage{amsmath,amssymb}
\usepackage{rotating}
\usepackage{fancyhdr}
\usepackage[scriptsize]{caption}
\hyphenation{a-gen-tiz-za-zio-ne}
\setlength{\paperwidth}{16cm}
\setlength{\paperheight}{24cm}
\setlength{\oddsidemargin} {2. cm}
\setlength{\evensidemargin} {2. cm}
\addtolength{\oddsidemargin} {-0.4 cm}
\addtolength{\evensidemargin} {-0.4 cm}
\linespread{1.1}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\renewcommand{\captionfont}{\normalfont \sffamily \itshape \small}
\pagestyle{empty}
\begin{document}
\include{frontespizio}
\thispagestyle{empty} \normalfont \cleardoublepage
\include{dedica}
\thispagestyle{empty} \cleardoublepage
\pagenumbering{Roman}
\include{sommario}
\thispagestyle{empty} \vspace*{.75truecm} \cleardoublepage
\include{ringraziamenti}
\thispagestyle{empty} \vspace*{.75truecm} \normalfont \cleardoublepage
\pagestyle{plain}\renewcommand{\chaptermark}[1]{\markboth{\chaptername\ \thechapter.\ #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[RE]{\bfseries\leftmark}
\fancyhead[LO]{\bfseries\rightmark}
\renewcommand{\headrulewidth}{0.3pt}
\include{capitolo1}
\include{capitolo2}
\include{capitolo3}
\include{capitolo4}
\include{capitolo5}
\include{capitolo6}
\include{capitolo7}
\cleardoublepage
% ---- Bibliography ----
\addcontentsline{toc}{chapter}{Bibliografia}
\bibliographystyle{plain}
\bibliography{bibl_tesi}
%\nocite{*}
\appendix
\pagestyle{fancy}
\fancyfoot{}
\renewcommand{\chaptermark}[1]{\markboth{\appendixname\ \thechapter.\ #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[RE]{\bfseries\leftmark}
\fancyhead[LO]{\bfseries\rightmark}
\renewcommand{\headrulewidth}{0.3pt}
\include{appendiceA}
\include{appendiceB}
\include{appendiceC}
\include{appendiceD}
\include{appendiceE}
\include{appendiceF}
\end{document}
私はこの件に関する過去の投稿をすべて読み、あらゆることを試しましたが、唯一効果があると思われるのは graphicx から dvips を削除することです。問題は、dvips を削除するとすぐに画像は再表示されますが、テキストがすべて右に移動し、正しく読むことができないことです。
役に立つかどうかは分かりませんが、私はOverleafを使っています
(写真に写っている名前は実名ではありません)
答え1
16cm に設定しています\paperwidth
が、テキストの幅は変更していないため、テキストは実際には紙に収まりません。オプションなしで graphicx をロードすると、graphicx は pdf ビューアの背景も 16cm に設定し、これによりテキストが突然移動する印象を与えます。
\paperwidth
手動で設定する代わりに、ジオメトリを使用してページ サイズを設定します\oddsidemargin
。
\documentclass[12pt,a4paper,twoside,openright]{report}
\usepackage{graphicx}
\usepackage[paperwidth=16cm,paperheight=24cm,hmargin=1.6cm]{geometry}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\end{document}