2 # -*- coding: utf-8 -*-
 
   4 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
 
   5 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 
   7 from __future__ import unicode_literals
 
   9 from librarian.book2anything import Book2Anything, Option
 
  12 class Book2Pdf(Book2Anything):
 
  19             '-t', '--save-tex', dest='save_tex', metavar='FILE',
 
  20             help='path to save the intermediary LaTeX file to'
 
  23             '-m', '--morefloats', dest='morefloats', metavar='old/new/none',
 
  24             help='force morefloats in old (<1.0c), new (>=1.0c) or none'
 
  27             '-b', '--base-url', dest='base_url', metavar='URL',
 
  28             help='specifies the base URL for relative image references'
 
  33 if __name__ == '__main__':