~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to src/fileexporterps.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2010-07-21 12:02:48 UTC
  • mfrom: (1.1.5 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100721120248-9ohlkaiin6aktimd
Tags: 0.2.3.90-1
* New upstream release (Closes: #563684).
* Switch to source package version 3.0 (quilt).
* Bumped Standards-Version to 3.9.0, no changes necessary.
* Link against libyaz to enable Z39.50 support (Closes: #550547).

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
            QTextStream ts( &latexFile );
112
112
            ts.setEncoding( QTextStream::UnicodeUTF8 );
113
113
            ts << "\\documentclass{article}\n";
114
 
            if ( kpsewhich( "t2aenc.def" ) && kpsewhich( "t2aenc.dfu" ) &&  kpsewhich( "t1enc.dfu" ) )
115
 
                ts << "\\usepackage[T1,T2A]{fontenc}\n";
 
114
            if ( kpsewhich( "t1enc.dfu" ) )
 
115
                ts << "\\usepackage[T1]{fontenc}\n";
116
116
            if ( kpsewhich( "babel.sty" ) )
117
117
                ts << "\\usepackage[" << m_latexLanguage << "]{babel}\n";
118
118
            if ( kpsewhich( "url.sty" ) )