仅从模板中提取首页代码

仅从模板中提取首页代码

是我想用作作业一部分的模板。问题是我只需要首页。但无论我如何尝试删除与首页无关的所有内容以仅获取首页的代码,它都会使整个文档出错。任何帮助都非常感谢。

答案1

\documentclass{article}
% Use this package: 
\usepackage{pdfpages}
\usepackage{lipsum} % for dummy text
% In your document add the first page as your start page. 
% Rest of the document will follow normally. 
\begin{document}
    \includepdf[pages={1}]{YOUR_TEMPLATE.pdf}
    \lipsum
\end{document}

相关内容