制作讲座大纲/复习资料包?

制作讲座大纲/复习资料包?

所以我想知道有没有办法让评论包类似于这样的风格这。 我可以使用普通的 LaTex 做类似的事情,但对于像心理学这样更非技术性的课程,我需要一种方法来跟上 PowerPoint。通常我会在课后打字,但这会占用很多时间。我安装了 Lyx 作为推荐,但它不能像我希望的那样嵌套尽可能多的要点。

有没有办法增加嵌套数量?或者可以使用其他插件?谢谢帮助!

答案1

这里有三种方法可以提高您在讲座期间做笔记的速度,并且在讲座结束时仍保留用 LaTeX 制作的文档。

射线

第一种是使用射线,这是 Markdown 的一个变体。在 RDx 中写下笔记后,你可以将其置于随附的perl 脚本

例如,如果你写:

= Why RDx?

Problems with LaTeX:

- LaTeX codes are **way too complicated**.
  - difficult to edit
  - visually not intuitive
- There are *only a few* commands and environments in
  LaTeX that one uses in ordinary texts.
  - Most of these markups can actually be much more
    perspicuously represented.
  - Formats of structured text that enable such simplified
    representation do already exist and are widely used in
    editing Wiki and html files.


== Using RDx
...

然后通过 perl 脚本运行它,你将得到:

\section{Why RDx?}

Problems with LaTeX:

\begin{itemize}
 \item LaTeX codes are \textbf{way too complicated}.
  \begin{itemize}
   \item difficult to edit
   \item visually not intuitive
  \end{itemize}
 \item There are \emph{only a few} commands and environments in
  LaTeX that one uses in ordinary texts.
  \begin{itemize}
   \item Most of these markups can actually be much more
    perspicuously represented.
   \item Formats of structured text that enable such simplified
    representation do already exist and are widely used in
    editing Wiki and html files.
  \end{itemize}
\end{itemize}

\subsection{Using RDx}
\ldots

然后就可以用 进行编译了pdflatex

Markdown 和pandoc

另一种可能性是直接用 Markdown 写笔记。据我所知(虽然我对 RDx 不是很熟悉),RDx 与 Markdown 的唯一区别在于它表示章节标题的方式。RDx 使用=,而 Markdown 使用#

无论如何,在 Markdown 中写下笔记后,你可以浏览一下pandoc,它能够从 Markdown 转换为 LaTeX 以及其他标记语言和格式。

根据你的笔记的性质,Markdown 和pandoc选项最终可能会更好,因为pandoc

理解许多有用的 markdown 语法扩展,包括文档元数据(标题、作者、日期);脚注;表格;定义列表;上标和下标;删除线;增强有序列表(起始数字和编号样式很重要);运行示例列表;带语法高亮的分隔代码块;智能引号、破折号和省略号;HTML 块内的 markdown;以及内联 LaTeX。如果需要严格的 markdown 兼容性,可以关闭所有这些扩展。

emacs 和 org-mode

最后,第三种可能性是使用 emacs 的 org-mode。当然,这需要知道如何使用 emacs。作为起点,你可能需要查看Org-mode 导出到 LaTeX:诱惑还是麻烦?emacs 中 TeX 工作流程的简单指南

相关内容