LaTeX 文書に PDF ファイルを挿入する

LaTeX 文書に PDF ファイルを挿入する

次のコードでは、LaTeX ドキュメントに PDF ファイルを挿入できません。次のコードを実行すると、ログ ファイルに次のようなエラー メッセージが表示されます。

"! Undefined control sequence.
\@calc@post@scan ...st@scan \else \def \calc@next
{\calc@error #1}\fi \fi \f...
l.20 \addtocontents{toc}{\setcounter{tocdepth}{0}}
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined."

ドキュメントに PDF ファイルを挿入するにはどうすればよいですか?

\documentclass[12pt,oneside]{book}
\usepackage{hyperref}
\usepackage{titletoc}
\usepackage[toc]{appendix}
\usepackage{pdfpages}
\renewcommand{\appendixtocname}{APPENDICES}

\begin{document}
\includepdf[pages=-]{myfile.pdf}
\tableofcontents
\chapter{CHAPTERR}
\section{Sectionn}
 Some stuff.
\chapter{CHAPTERRR}
\section{Sectionnn}
 Other stuff.

\begin{appendices}
\addtocontents{toc}{\setcounter{tocdepth}{0}}
\chapter{TABLESS}
\section{DATA}
\chapter{FIGURESS}
\section{CODE}
\end{appendices}

\end{document} 

次のような出力が必要です:

ここに画像の説明を入力してください

ここに画像の説明を入力してください

ここに画像の説明を入力してください

答え1

これはパッケージとは関係ありませんpdfpagesが、ロードされcalc、それが問題であり、おそらく堅牢性がcalc失われる\setcounterか、あるいは何らかの問題が残ります...

その場所のカウンターを変更したい場合は、

\addtocontents{toc}{\protect\setcounter{tocdepth}{0}}

早期に拡張されるのを防ぐため\setcounter。多くのマクロは、\addtocontents

関連情報