summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/reledmac/examples/2-linespacing.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-11-30 23:02:23 +0000
committerKarl Berry <karl@freefriends.org>2015-11-30 23:02:23 +0000
commit1c66f34431d8bca21785b67e55de3088093508fb (patch)
tree16ae747d3d254912af1a1da2de3e366f9d728e6a /Master/texmf-dist/doc/latex/reledmac/examples/2-linespacing.tex
parent775c98e0f724a659a785f096cab3fe88ad3e2929 (diff)
reledmac (30nov15)
git-svn-id: svn://tug.org/texlive/trunk@38985 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/reledmac/examples/2-linespacing.tex')
-rw-r--r--Master/texmf-dist/doc/latex/reledmac/examples/2-linespacing.tex42
1 files changed, 42 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/reledmac/examples/2-linespacing.tex b/Master/texmf-dist/doc/latex/reledmac/examples/2-linespacing.tex
new file mode 100644
index 00000000000..fa23d6c39d5
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/reledmac/examples/2-linespacing.tex
@@ -0,0 +1,42 @@
+\documentclass[12pt]{article}
+\usepackage{polyglossia,fontspec,xunicode}
+\usepackage{libertineotf}
+\setmainlanguage{latin}
+\setotherlanguage{english}
+
+
+\usepackage{setspace}
+\AtBeginDocument{\doublespacing}
+\usepackage{lipsum}
+\usepackage[series={A,B},noend,noeledsec,nofamiliar,noledgroup]{reledmac}
+\Xarrangement[A]{paragraph}
+\Xarrangement[B]{twocol}
+\makeatletter
+ \Xbhooknote{\setstretch {\setspace@singlespace}}
+ \Xbhookgroup{\setstretch {\setspace@singlespace}}
+\makeatother
+
+
+\begin{document}
+
+\begin{english}
+\title{Line spacing}
+\maketitle
+\begin{abstract}
+This example sets the interline of footnotes with the \emph{setspace} package. The main text is double line spacing, the footnotes are single line spacing.
+
+It use the \verb+\Xbhooknote+ and \verb+\Xbhookgroup+ commands to call some space setting.
+Note that these commands are called after loading the \emph{setspace} package, because they use \emph{setspace} commands.
+
+We use \verb`\AtBeginDocument{\doublespacing}` to start doublespacing at the beginning of the \verb+document+ environment. We do not use the \verb+doublespacing+ option of the \emph{setspace} package, because it dirupts internal \emph{reledmac} computing.
+\end{abstract}
+\end{english}
+\beginnumbering
+\pstart
+\lipsum*[1]\edtext{Lipsum}{
+ \Afootnote{\lipsum*[3]}
+ \Bfootnote{\lipsum*[4]}}
+\lipsum*[6-7]
+\pend
+\endnumbering
+\end{document}