Minor code formatting.
This commit is contained in:
parent
25da1680c3
commit
281b36470f
1 changed files with 5 additions and 0 deletions
|
@ -488,24 +488,29 @@ options =
|
|||
exitWith ExitSuccess)
|
||||
"FORMAT")
|
||||
"" -- "Print default template for FORMAT"
|
||||
|
||||
, Option "" ["bibliography"]
|
||||
(ReqArg
|
||||
(\arg opt -> return opt { optBibliography = (optBibliography opt) ++ [arg] })
|
||||
"FILENAME")
|
||||
""
|
||||
|
||||
, Option "" ["csl"]
|
||||
(ReqArg
|
||||
(\arg opt -> return opt { optCslFile = arg })
|
||||
"FILENAME")
|
||||
""
|
||||
|
||||
, Option "" ["natbib", "no-citeproc"]
|
||||
(NoArg
|
||||
(\opt -> return opt { optCiteMethod = Natbib }))
|
||||
"" -- "Use natbib cite commands in LaTeX output"
|
||||
|
||||
, Option "" ["biblatex"]
|
||||
(NoArg
|
||||
(\opt -> return opt { optCiteMethod = Biblatex }))
|
||||
"" -- "Use biblatex cite commands in LaTeX output"
|
||||
|
||||
, Option "" ["data-dir"]
|
||||
(ReqArg
|
||||
(\arg opt -> return opt { optDataDir = Just arg })
|
||||
|
|
Loading…
Add table
Reference in a new issue