I want to use the [bp] font size for the whole document in Lyx 2.0.4 for compilation with XeLatex. My LaTex preamble looks like this: \usepackage{fontspec} \usepackage{xunicode} \usepackage{xltxtra} \date{}. If I specify \documentclass{article}[12bp] I get these errors: LaTex Error: Two \documentclass or \documentstyle commands and LaTex Error: Missing \begin{document}.
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
|
|||
| show 3 more comments |
|
The error is nothing to do with the units, just a syntax error in your command which should be
you have the |
|||||||
|
12pt(\documentclass[12pt]{article}), that's quite close, but well supported. – Heiko Oberdiek Nov 27 '12 at 22:20LaTex Error: Two \documentclass or \documentstyle commands. But I want to use [bp], as I said, not [pt]. Is that even possible (avoiding the error, of course)? – riderplus Nov 27 '12 at 22:23bpinstead ofpt: You would have to redefine lots of macros (all font size commands, ...), becauseptis the standard unit in TeX, notbp. – Heiko Oberdiek Nov 27 '12 at 22:25bpinstead ofpt. That's a pity, MSWord usesbpand it would make it difficult for me to write my thesis, I would end up filling less space. – riderplus Nov 27 '12 at 22:31