次のコードでは、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