blob: 7d9441c858527587b388d1927a965e631a73b005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesFile{standalone.cfg}[%
2012/09/15
v1.1b
Default configuration file for 'standalone' class]%
%% Enabled the "varwidth" option if the "varwidth" package is available:
%%\IfFileExists{varwidth.sty}{%
%% \standaloneconfig{varwidth}%
%%}{}%
%% Default options:
\standaloneconfig{crop}
%% Option which 'preview' should be loaded with
\PassOptionsToPackage{active,tightpage}{preview}%
%% Enable 'preview' option by default:
%%\standaloneconfig{preview}
%% Remove the border:
\standaloneconfig{border=0pt}
%% Default preview border (used by standalone v0.x):
%%\standaloneconfig{border=0.50001bp}
%% Disable navigation symbols in beamer.
%% This must be done AtEndOfClass because the options are not processed yet,
%% so "beamer" mode is not enabled yet.
\AtEndOfClass{%
\ifstandalonebeamer
\setbeamertemplate{navigation symbols}{}%
\fi
}
%% vim: ft=tex
|