期刊目录

期刊目录

我对项目的编号有疑问。

我单独拥有这些物品,并且不知道如何将它们放在一起,进行编号等等。

我有几篇文章,需要获取索引,方法如下

                               Contents

文章名称

文章作者................................................................页码

文章名称

文章作者................................................................页码

文章名称

文章作者................................................................页码

等等等等。

感谢您的帮助

答案1

使用结合类.combine 类可用于将一组独立的 *.tex 文件转换为一个编译文件。以下是示例:

主文本

\documentclass[book]{combine}
\title{A Book Example Using the Combine Class}
\author{TeX.SX}

\begin{document}
\maketitle
\tableofcontents

\chapter{Introduction}
I'm adding an introduction to this collection

\begin{papers}
    \coltoctitle{Hello, World}
    \coltocauthor{Tom Thompson}
    \label{doc1}
    \import{doc1} % this is doc1.tex; notice the lack of *.tex in the file name

    \coltoctitle{Farewell, everyone}
    \coltocauthor{John Johnson}
    \label{doc2}
    \import{doc2}
\end{papers}

\chapter{Acknowledgements}
\emph{You}, for asking this question on TeX.SX!

\end{document}

doc1.tex

\documentclass{article}

\begin{document}
\chapter{Introduction}
Hello, world! How are you?

This is the end of the first part.
\end{document}

doc2.tex

\documentclass{article}

\begin{document}
\chapter{Farewell}
Goodbye, World. I'll miss you.

This is the end of the second part.

\end{document}

请注意,该\import{}命令采用不带 *.tex 扩展名的 LaTeX 文件名称。请参阅联合收割机的文档了解有关如何使用它的更多信息。

相关内容