习题册练习与答案分开

2020-04-04 09:41发布

请问下面链接中的习题册能实现答案按章、节、小节、小小节打印吗? https://www.latexstudio.net/archives/11634.html

请问下面链接中的习题册能实现答案按章、节、小节、小小节打印吗? https://www.latexstudio.net/archives/11634.html
2条回答
使用`xr`包,示例如下: `b.tex`中设置了标签`eq:test`,**先编译`b.tex`确保生成`b.aur`文件** ```tex \documentclass{article} \begin{document} \begin{equation}\label{eq:test} a + b = c \end{equation} \end{document} ``` 在`a.tex`中引用这个标签 ```tex \documentclass{article} \usepackage{xr} \externaldocument{b} \begin{document} see eq. \ref{eq:test} in page \pageref{eq:test} \end{document} ``` 然后编译`a.tex`会得到如下结果: ```txt see eq. 1 in page 1 ```

一周热门 更多>

相关问答