Thanks
J
Ubuntu 12.10
current texlive
bio.cls
attempting using
Code: Select all
\setspace
\doublespace
\begin{document}
lots of text
\end{document}Code: Select all
\setspace
\doublespace
\begin{document}
lots of text
\end{document}Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\setspace you mean \usepackage{setspace}.Code: Select all
\RequirePackage{fix-cm}
\documentclass[a4paper,english]{bio}
\usepackage{setspace}
\usepackage{fontspec}
\usepackage{array}
\usepackage{pdflscape}
\usepackage{changepage}
\usepackage{polyglossia}
\doublespace
\begin{document}
Lets see if we can type some material and double space it or is there something in the bio class file that is forcing it to be single spaced. This is really annoying. I think it must be something in the class file that is forcing it to do this?
\end{document}oupdraft option instead of setspace and \doublespacing:Code: Select all
\documentclass[a4paper,english,oupdraft]{bio}article, book and report, support the draft option, for visualizing bad line breaks, byCode: Select all
\DeclareOption{draft}{\setlength\overfullrule{5pt}}bio class does the same. It adds its own oupdraft option, for a different purpose, here double spacing.draft (and final) options are also supported by packages, such as
graphicx: with draft, images are not printedhyperref: with draft, all hypertext features are turned offlistings: with draft, no printing of external listings, but showing captions and generating labelsLearn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis