在《计算机程序的结构和解释》(Abelson,Sussman,Sussman;1996)第 488 页中,作者写道
...建立新的语言是控制工程设计复杂性的有力策略;我们通常可以通过采用一种新的语言来增强我们处理复杂问题的能力,这种语言使我们能够以不同的方式描述(从而思考)问题,使用原语、组合手段和特别适合当前问题的抽象手段。[1]
编程拥有多种语言。有...
然后一半的页面是脚注:
- 同样的理念贯穿整个工程领域。例如,电气工程师使用许多不同的语言来描述电路。两种...
我想引用文本,包括脚注。
我该怎么做呢?最好是 APA 格式?
(我不确定 APA 对此有何评论)
答案1
关于特定样式的问题实际上不是这里的主题,但如何引用附有脚注的内容这一更普遍的问题似乎是一个好问题。TeX 恰好有这样的环境:minipage。
\documentclass{article}
\begin{document}
This is the main text.
\begin{center}
\begin{minipage}{.8\linewidth}
\renewcommand\thempfootnote{\arabic{mpfootnote}}
Establishing new languages is a powerful strategy for controlling complexity in engineering design; we can often enhance our ability to deal with a complex problem by adopting a new language that enables us to describe (and hence to think about) the problem in a different way, using primitives, means of combination, and means of abstraction that are particularly well suited to the problem at hand.\footnote{The same idea is pervasive throughout all of engineering. For example, electrical engineers use many different languages for describing circuits. Two...}
\end{minipage}
\end{center}
This is the continuation of the main text.
\end{document}
在此示例中,我将mpfootnote
标记更改为数字(默认为小写字母)。如果您自己的文档也有脚注,这可能会造成混淆(尽管我并不这么认为),因此您可以根据需要定义它。