我想要具有以下依赖关系:
main.tex
|-- part.tex
每个文件都有自己的前言,
part.tex
就像它们的 pdf 插入其中一样main.pdf
。
我可以轻松实现这一点pdfpages
和\includepdf
,但我想通过一次编译来编译这两个文件main.tex
。
这就是为什么我想standalone
和\includestandalone
。
https://www.overleaf.com/learn/latex/Multi-file_LaTeX_projects#The_standalone_package
但是当我将结果包括part.tex
在内时main.tex
,它会出现在同一页面上并带有偏移。
我如何将子文件作为独立的 pdf 包含进来?
MWE: main.tex
\documentclass{article}
\usepackage[subpreambles=true,mode=buildnew]{standalone}
\usepackage[utf8]{inputenc}
%\usepackage{pdfpages}
\title{Main File}
\author{Main author}
\begin{document}
\maketitle
\section{Front matter}
\section{Importing}
%\includepdf{title.pdf}
\includestandalone{title}
\end{document}
标题.tex
\documentclass[crop=false]{standalone}
\usepackage{showframe}
\title{The title file}
\author{Fibo Kowalsky}
\begin{document}
\maketitle
\end{document}