Text FormattingBlank page after using cmbright

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
BoudewijnD
Posts: 60
Joined: Wed Nov 18, 2009 4:18 pm

Blank page after using cmbright

Post by BoudewijnD »

Hi,

I'm setting up a latex file for my PhD thesis (it alot of work) but I want to change the font to cmbright. But when I us it I get a blank page. Can any one help.

Here is the code:

Code: Select all

\documentclass[10pt,twoside,dutch,english]{book}

%%%%%%%%%%%%%%%%%%%%%%%%%%
%% PACKAGE LOADING TIME %%
%%%%%%%%%%%%%%%%%%%%%%%%%%


\usepackage[times]{quotchap}   % fancy chapter beginning
\usepackage{fancyhdr}
%\usepackage[sectionbib]{chapterbib2} % bibliography per chapter
%\usepackage[sectionbib]{chapterbib2} % bibliography per chapter
% (sectionbib -> bibliography is \section* instead of \chapter*), should come before babel chapterbib2 
\usepackage[dutch,english]{babel}
\usepackage[justification=centering]{caption}     %better control over captions (sideways, font, ...)  
\usepackage{subfigure}  % with scriptsize or so, one can adapt the size
\usepackage{cite}
\usepackage{enumerate}  % to make it possible to define the numbers (A,a, ...)
\usepackage{verbatim}   % extra support for verbatim environments
\usepackage{float}      % you can define 'H' so that floats are forced to be putted 'here
%\ifx\pdftexversion\undefined
%\usepackage[dvips]{graphicx}
%\else
%\usepackage[pdftex]{graphicx}
%\fi
%\usepackage{psfrag}
\usepackage{graphicx}
\usepackage{chappg}     % page numbering (chapno-pageno), for ToC
\usepackage{url}        % for better url typesetting
\usepackage{expdlist}   % Expanded description (e.g. better alignement) -> needed for acronym_expdlist package
%\usepackage{acronym_expdlist}   % for list of acronyms
\usepackage{hhline}     % generates nicer table lines (without missing pixels) + more flexible
\usepackage{afterpage}  % adds \afterpage command, which makes it possible to issue \afterpage{\clearpage} which flushes all floats after this page
\usepackage{listings}
\usepackage{amsmath,amsfonts,amsthm}
\usepackage{ifthen}     % ifthenelse command
\usepackage[version=3]{mhchem}     % use \ce {}  for chemical forumals
\usepackage[inner=2.25cm, outer=1.75cm, top=2cm, bottom=2cm, paperwidth=16.5cm, paperheight=24cm]{geometry}
\usepackage{cmbright}

%test gedeelte%

%%%%%%%%%%%%%%%%%%%%
%%  START BOOK    %%
%%%%%%%%%%%%%%%%%%%%

\begin{document}

dit is een test \ce{h2so5}
\end{document}
THNX,

boudewijn

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Blank page after using cmbright

Post by frabjous »

I do not get a blank page with that code.

You might want to try \listfiles in you code to see the version dates of the packages being loaded, and post the log file here. Or else update your TeX system and see if that helps.
BoudewijnD
Posts: 60
Joined: Wed Nov 18, 2009 4:18 pm

Blank page after using cmbright

Post by BoudewijnD »

frabjous wrote:Or else update your TeX system and see if that helps.
that did the trick thanx!!
Post Reply