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}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
\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 labelsNEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p