<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
    <title></title>
  </head>
  <body bgcolor="#ffffff" text="#000000">
    On 16.06.2011 00:32, Owen wrote:
    <blockquote cite="mid:20110616083216.586e2d39@pcug.org.au"
      type="cite">
      <pre wrap="">On Wed, 15 Jun 2011 11:43:21 +0200
SCRIBUS RIMITU <a class="moz-txt-link-rfc2396E" href="mailto:scribusrimitu@gmail.com"><scribusrimitu@gmail.com></a> wrote:

</pre>
      <blockquote type="cite">
        <pre wrap="">Hi there,

And firstable please excuse my english. I'm using Scribus because I
want to create a scientific poster (A0 size). I must include Latex
formulas, but after doing Insert Rendering Frame, and right-clicking
" Edit source ", I see that there is no possibility to set a Fontsize
greater than 20 pts, which is really a problem in my opinion.

If I made a mistake using Scribus, please accept my sincere
apologizes for make scribus users wasting their time reading my
email. But I have to say that I must create this poster very soon, so
I'm running out of time.
</pre>
      </blockquote>
      <pre wrap="">


I am not sure if this will help, but I have the font,
AR PL Uming CN Light (it was part of the Fedora15 distribution)

This font has many mathematical symbols and able to be made any font
size




Owen

</pre>
    </blockquote>
    There are many options. E.g., you can use any of these (usually
    installed by default):<br>
    \usepackage{fourier}% uses Utopia font<br>
    \usepackage{mathpazo}% uses Palatino font<br>
    \usepackage{mathptmx}% uses Times font<br>
    \usepackage{kpfonts}% uses KP Serif font<br>
    <style type="text/css">p, li { white-space: pre-wrap; }</style>
    <p style="margin: 0px; text-indent: 0px;">\usepackage[charter]{mathdesign}%
      uses Charter font etc.<br>
    </p>
    <p style="margin: 0px; text-indent: 0px;"><br>
      There are other fonts with math support. More infos here: <br>
    </p>
    <a class="moz-txt-link-freetext" href="http://www.tug.dk/FontCatalogue/">http://www.tug.dk/FontCatalogue/</a><br>
    <br>
    As Stefan explained, \fontsize{x}{y}\selectfont commands (where "x"
    is font size, e.g., 40pt, and "y" is baselineskip, e.g., 50pt) take
    care of the size of the text. You'd probably want to use these
    commands locally, i.e., in a group, inside curly brackets, as I did
    in the example below.<br>
    <p style="margin: 0px; text-indent: 0px;"><br>
      An example:</p>
    <p style="margin: 0px; text-indent: 0px;"><br>
      1. Open Scribus and create a Render Frame > Right Click >
      Edit Source<br>
      2. Tick off "Use Preamble" (since we'll use our own)<br>
      3. Type in this example code:<br>
    </p>
    <p style="margin: 0px; text-indent: 0px;"><br>
      <style type="text/css">p, li { white-space: pre-wrap; }</style>%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%</p>
    <p style="margin: 0px; text-indent: 0px;"><br>
      <tt>\documentclass{article}</tt></p>
    <p style="margin: 0px; text-indent: 0px;"><tt><br>
        \usepackage[utf8]{inputenc}<br>
        \usepackage[T1]{fontenc}</tt></p>
    <p style="margin: 0px; text-indent: 0px;"><tt><br>
        \usepackage{amsmath}<br>
        \usepackage{amssymb}<br>
        \usepackage{xcolor}</tt></p>
    <p style="margin: 0px; text-indent: 0px;"><tt><br>
        \usepackage{fourier}% uses Utopia font for text and math</tt></p>
    <p style="margin: 0px; text-indent: 0px;"><tt><br>
        \begin{document}</tt></p>
    <p style="margin: 0px; text-indent: 0px;"><tt><span
          style="font-family: 'Courier New,courier';"><br>
          {</span><br>
        <span style="font-family: 'Courier New,courier';">\color{red}</span><br>
        <span style="font-family: 'Courier New,courier';">\fontsize{40}{40}</span><br>
        <span style="font-family: 'Courier New,courier';">\selectfont</span><br>
        <span style="font-family: 'Courier New,courier';">Big text</span><br>
        <span style="font-family: 'Courier New,courier';">}<br>
          <br>
        </span><span style="font-family: 'Courier New,courier';">\bigskip<br>
          <br>
        </span><span style="font-family: 'Courier New,courier';">{</span><br>
        <span style="font-family: 'Courier New,courier';">\color{blue}</span><br>
        <span style="font-family: 'Courier New,courier';">\fontsize{30}{30}</span><br>
        <span style="font-family: 'Courier New,courier';">\selectfont</span><br>
        <span style="font-family: 'Courier New,courier';">Math:</span><br>
        <span style="font-family: 'Courier New,courier';">}<br>
          <br>
        </span><span style="font-family: 'Courier New,courier';">{</span><br>
        <span style="font-family: 'Courier New,courier';">\fontsize{20pt}{20pt}</span><br>
        <span style="font-family: 'Courier New,courier';">\selectfont</span><br>
        \begin{align}<br>
        I &
        =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\<br>
        \intertext{\text{integrand is symmetric to
        \ensuremath{\phi=\pi}, therefore}} &
        =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi<br>
        \end{align}<br>
        <span style="font-family: 'Courier New,courier';">}<br>
          <br>
        </span>\end{document}</tt>
      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%<br>
    </p>
    <p style="margin: 0px; text-indent: 0px;"><br>
      P.S. Also, there is another option: if you're using xelatex (in
      which case LaTeX command in File > Preferences > External
      Tools > LaTeX should be changed to: xelatex --interaction
      nonstopmode), you can load mathspec package and use any font
      installed on your system. However, this might not work perfectly
      in all cases (depending on quality of font used), so you should
      take care. More infos in mathspec documentation: <br>
    </p>
    <a class="moz-txt-link-freetext" href="http://ctan.ijs.si/tex-archive/help/Catalogue/entries/mathspec.html">http://ctan.ijs.si/tex-archive/help/Catalogue/entries/mathspec.html</a><br>
    <br>
    Regards,<br>
    <br>
    M.<br>
  </body>
</html>