我正在寻找一个用于演讲的模板(或一些生成模板的指针)。
我所寻找的是,可以有一栏用于“完整”演讲,然后第二栏用于笔记,这样我就可以主要根据笔记进行工作,但如果我忘记了位置,可以返回到内容更丰富的文本中的相关点。目前,我使用边注和宽右边距来弥补不足。
编辑 这是给我用来演讲的,不是用来展示的。我想要的是能让我使用较短的笔记来演讲,但仍然能让我使用更完整的文本。我猜是这样的:
I want to talk today about the benefits of using version control software,
such as git, \righthandnote{Benefits of VCS and LaTeX} with talks, and why
pure text based systems such as LaTeX are a natural fit, allowing for easy
text based diffs, patching, etc. The actual files are also smaller, and
and mean that entire repositories can be made available fairly easily. I'm
now going to filler filler filler....
然后段落将位于左侧(1/2-2/3 宽度),而 \righthandnote 将占据剩余的宽度,并与段落匹配,以便让我知道如果我失去了所说的连续性,我应该移动到哪里。
这是否阐明了我的目的?这是为了帮助我从完整的谈话转向笔记,但有一个后备方案。
答案1
我想我知道你想要什么。试试这个,并根据口味调整长度:
\documentclass[oneside]{article}
\usepackage[left=2.54cm,right=7cm]{geometry}
\setlength{\marginparwidth}{4cm}
\setlength{\marginparsep}{1cm}
\usepackage{lipsum}
\begin{document}
Some text, else the margin par will be after the lipsum text
completes.\marginpar{Point the first.}\lipsum[42]
Text.\marginpar{Point the second.} \lipsum[43]
\end{document}
编辑:
发完才发现原来楼主想改进的地方就这么多,删了又根据评论里的交流恢复了。