summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/csquotes/csquotes.cfg
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-12 23:53:45 +0000
committerKarl Berry <karl@freefriends.org>2006-01-12 23:53:45 +0000
commit5350b8b5b0f65468d790c922791f1753e275a23d (patch)
treea0ef3e572f26d25ad642b2a04d3574005e8cce93 /Master/texmf-dist/tex/latex/csquotes/csquotes.cfg
parent7ea95a7c63938c4dd3f9ca214141679b15e0a565 (diff)
csquotes
git-svn-id: svn://tug.org/texlive/trunk@800 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/csquotes/csquotes.cfg')
-rw-r--r--Master/texmf-dist/tex/latex/csquotes/csquotes.cfg108
1 files changed, 108 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/csquotes/csquotes.cfg b/Master/texmf-dist/tex/latex/csquotes/csquotes.cfg
new file mode 100644
index 00000000000..179af4b8a96
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/csquotes/csquotes.cfg
@@ -0,0 +1,108 @@
+% $Id: csquotes.cfg,v 3.1 2005/08/29 18:07:39 lehman pub $
+
+\ProvidesFile{csquotes.cfg}[2005/08/29 v3.1 csquotes configuration]
+
+% Put your definitions here.
+
+\endinput
+
+% What follows are examples of what you will typically do in this
+% file. Note that you need to move the examples above \endinput if
+% you want to try them out.
+
+% PRESETTING PACKAGE OPTIONS
+%
+% Use \ExecuteOptions to preset package options if you are not
+% satisfied with the built-in defaults. Options given here will be
+% processed before any options specified in the document preamble.
+% You may override them anytime with \usepackage in the preamble.
+
+\ExecuteOptions{babel=true,strict=true}
+
+% CHANGING THE DEFAULT PARAMETERS
+%
+% All preset values may be changed in the document preamble as
+% usual. The following values are the built-in defaults:
+
+\SetBlockEnvironment{quote}
+\SetBlockThreshold{3}
+\SetCiteCommand{\cite}
+
+% SETTING UP A NEW QUOTE STYLE
+
+% Defining a new style with several variants:
+
+\DeclareQuoteStyle[quotes]{example}% [variant]{style}
+ {\textquotedblleft}% opening outer mark
+ {\textquotedblright}% closing outer mark
+ {\textquoteleft}% opening inner mark
+ {\textquoteright}% closing inner mark
+\DeclareQuoteStyle[quotes*]{example}
+ {\quotedblbase}
+ {\textquotedblright}
+ [0.1em]% kern adjoining marks
+ {\quotesinglbase}
+ {\textquoteright}
+\DeclareQuoteStyle[everypar]{example}
+ {\guillemotleft}
+ [\guilsinglleft]% middle outer mark
+ {\guillemotright}
+ {\textquotedblleft}
+ [\textquoteleft]% middle inner mark
+ {\textquotedblright}
+\DeclareQuoteStyle[everyline]{example}
+ [\seteverylineleft{\guillemotleft}]% requires Omega
+ {\guillemotleft}
+ {\guillemotright}
+ {\guilsinglleft}
+ {\guilsinglright}
+\DeclareQuoteStyle[everyline*]{example}
+ [\seteverylineright{\guillemotright}]% requires Omega
+ {\guillemotleft}
+ {\guillemotright}
+ {\guilsinglleft}
+ {\guilsinglright}
+
+% Defining the default variant of the style:
+
+\DeclareQuoteAlias[quotes]{example}{example}
+
+% Defining a second-level alias:
+
+\DeclareQuoteAlias{example}{demo}
+
+% Adding a package option for a style:
+
+\DeclareQuoteOption{example}
+
+% DEFINING ENVIRONMENTS FOR PARAGRAPH QUOTATIONS
+
+% Here are some alternative environments for paragraph quotations
+% (block and display), as discussed in the tutorial. The first one
+% decreases the font size of the `quote' environment by one step:
+
+\RequirePackage{relsize}
+
+\newenvironment*{smallquote}
+ {\quote\smaller}
+ {\endquote}
+
+\SetBlockEnvironment{smallquote}
+
+% This environment forces indentation after all paragraph quotations:
+
+\newenvironment*{paraquote}
+ {\begingroup\quote}
+ {\endquote\endgroup}
+
+\SetBlockEnvironment{paraquote}
+
+% The last environment combines the previous ones:
+
+\RequirePackage{relsize}
+
+\newenvironment*{smallparaquote}
+ {\begingroup\quote\smaller}
+ {\endquote\endgroup}
+
+\SetBlockEnvironment{smallparaquote}