对图片使用不同的图形路径子文件夹

对图片使用不同的图形路径子文件夹

我第一次用 Latex 写论文,并尝试用根文档和不同的子文档为文档提供良好的结构\input。以下是我的 tex 文档的一个小示例:

\documentclass[twoside,paper=a4,fontsize=12pt,draft]{scrreprt}
\input{preface/thesis_preambel}
\begin{document}
\pagenumbering{gobble}
\include{preface/thesis_titlepage}
\pagenumbering{Roman}
\include{preface/thesis_day}
\tableofcontents
\newpage
\pagenumbering{arabic}
\chapter{Motivation and Research Goals}
\input{chapter_motivation_and_research/thesis_intro}¸
\input{chapter_motivation_and_research/thesis_aim}
...
...
\end{document}

我现在想要的是有一个包含图片的文件夹:\home\thesis\pics,并且对于每一章,我喜欢创建一个子文件夹并将图片保存在其中:\home\thesis\pics\thesis_intro 等等......

我现在该如何包含\graphicspath{}命令?我只知道如何使用一条路径。有人能帮我举个例子或提供一些帮助吗?提前谢谢!

相关内容