如何在 LyX 中的序言中添加一些内容?

如何在 LyX 中的序言中添加一些内容?

我想在序言中添加一些内容,但不知道怎么做。我试过,Insert -> Latex Code只是在我的文章中挑选了一些地方,但我想它们从来都不在序言中吧?我想我不能直接把代码放到我的文章里。

我可以在 下查看源代码View -> Source。我可以编辑源代码吗?它不在 下Edit

答案1

LyX 在菜单选项“文档”>“设置...”>“LaTeX 序言”下隐藏了“LaTeX 序言”。

在此处输入图片描述

答案2

您的文档应具有以下格式:

\documentclass{<class>}

%% material here is the preamble

\begin{document}

%% material here is the body of the document

\end{document}

通常情况下,你会写类似

\documentclass{article}
\usepackage{geometry}
\usepackage{tikz}
\usepackage{<your favorite package>}
\begin{document}

Hello world

\end{document}

有多种方法来组织你的文档。例如,你可以将你的前言在它自己的文件中——假设它被称为my_preamble.tex。然后,你可以加载为

 \documentclass{article}
 \input{my_preamble}
 \begin{document}
 ...
 \end{document}

无论您使用什么编辑器或 IDE 来构建文档,您都应该能够手动修改文档的内容以满足您的需要。

相关内容