From df33d1358768f6250ceed0cfb2b4e5d7e31f431c Mon Sep 17 00:00:00 2001
From: Vaclav Zeman <vhaisman@gmail.com>
Date: Mon, 29 Aug 2016 09:51:04 +0200
Subject: [PATCH] LaTeX: Do not set [htbp] figure placement options.

Do not set `[htbp]` placement options on each figure to allow overriding
them by them using `\fps@figure` redefintion either in header or in
template.
---
 src/Text/Pandoc/Writers/LaTeX.hs | 2 +-
 tests/writer.latex               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Text/Pandoc/Writers/LaTeX.hs b/src/Text/Pandoc/Writers/LaTeX.hs
index 29e8c962c..b7db64aec 100644
--- a/src/Text/Pandoc/Writers/LaTeX.hs
+++ b/src/Text/Pandoc/Writers/LaTeX.hs
@@ -421,7 +421,7 @@ blockToLaTeX (Para [Image attr@(ident, _, _) txt (src,'f':'i':'g':':':tit)]) = d
   lab <- labelFor ident
   let caption = "\\caption" <> captForLof <> braces capt <> lab
   figure <- hypertarget ident (cr <>
-            "\\begin{figure}[htbp]" $$ "\\centering" $$ img $$
+            "\\begin{figure}" $$ "\\centering" $$ img $$
             caption $$ "\\end{figure}" <> cr)
   return $ if inNote
               -- can't have figures in notes
diff --git a/tests/writer.latex b/tests/writer.latex
index 03e7133b7..eaecea949 100644
--- a/tests/writer.latex
+++ b/tests/writer.latex
@@ -917,7 +917,7 @@ or here: <http://example.com/>
 
 From ``Voyage dans la Lune'' by Georges Melies (1902):
 
-\begin{figure}[htbp]
+\begin{figure}
 \centering
 \includegraphics{lalune.jpg}
 \caption{lalune}