diff options
author | Vaclav Haisman <vhaisman@gmail.com> | 2016-08-29 10:17:59 +0200 |
---|---|---|
committer | Vaclav Haisman <vhaisman@gmail.com> | 2016-08-29 10:17:59 +0200 |
commit | c32c8be572bf422f7ff3dfd3ed417995341fb84e (patch) | |
tree | 21907d8ce0a347b6737d58ad4d20a9b50dc40099 | |
parent | 284279f61e493bf70a8375eb772d293b9fb5d6bf (diff) | |
download | pandoc-c32c8be572bf422f7ff3dfd3ed417995341fb84e.tar.gz |
LaTeX: Set figure placement defaults.
This restores Pandoc's defaults after applicaiton of changes in
https://github.com/jgm/pandoc/pull/3093.
-rw-r--r-- | default.latex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/default.latex b/default.latex index 15fecad55..f1d3e7ecd 100644 --- a/default.latex +++ b/default.latex @@ -190,6 +190,11 @@ $if(dir)$ \newenvironment{LTR}{\beginL}{\endL} \fi $endif$ + +\makeatletter +\def\fps@figure{htbp} +\makeatother + $for(header-includes)$ $header-includes$ $endfor$ |