안녕하세요 여러분 저는 제 작업에 사진을 포함시키려고 합니다. 제 설정은 다음과 같습니다.
\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}