LyXTrouble with making a poster in LyX

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
thorpn
Posts: 53
Joined: Mon Jul 30, 2012 7:30 pm

Trouble with making a poster in LyX

Post by thorpn »

I am trying to create a poster for a conference in LyX, however I cant really figure out how to do it.

I am using the Beamerposter class which needs to use the Beamerposter.sty, but I have not been able to figure out how to let it use it. In the LaTeX preamble I have put

Code: Select all

\usepackage{C:/Users/okotni/Desktop/beamerposter/beamerposter}


but when I try to compile I get errors saying "veryhuge already defined" etc.

What am I doing wrong ?

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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Trouble with making a poster in LyX

Post by Stefan Kottwitz »

Hi,
thorpn wrote:I am using the Beamerposter class
do you mean the beamer class? I don't know a beamerposter class, only the beamerposter.sty package file that is loaded in addition to beamer.

Btw. I like the tikzposter class. It offers some nice styles. Take a look at the example with full source code from the LaTeX Cookbook: TikZ poster:
tikz_poster_wave.png
tikz_poster_wave.png (121.77 KiB) Viewed 5300 times
Other styles with this class (scroll the big images, save, or open in a new browser tab if they would be displayed too small):
tikz_poster_themen_2.png
tikz_poster_themen_2.png (225.32 KiB) Viewed 5300 times
tikz_poster_themen_3.png
tikz_poster_themen_3.png (246.92 KiB) Viewed 5300 times
Stefan
LaTeX.org admin
thorpn
Posts: 53
Joined: Mon Jul 30, 2012 7:30 pm

Re: Trouble with making a poster in LyX

Post by thorpn »

I think I was incorrect, it is the beamerposter.sty I am having trouble with - any suggestions as to what I can do ?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Trouble with making a poster in LyX

Post by Stefan Kottwitz »

I guess we can see the cause if you would post
  • the .lyx file as attachment
  • a pdfLaTeX export file
Of cause it can be a very reduced copy.

Stefan
LaTeX.org admin
thorpn
Posts: 53
Joined: Mon Jul 30, 2012 7:30 pm

Re: Trouble with making a poster in LyX

Post by thorpn »

Thank you so much for your help Stefan, you should set up a Patreon page if you havent already :)

Attachment uploaded
Attachments
Backtest_Poster.lyx
(17.56 KiB) Downloaded 445 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Trouble with making a poster in LyX

Post by Stefan Kottwitz »

Interesting, google returns for "\textclass beamerposter" just one match, a poster-beamerposter.lyx file.

At least this one doesn't cause a conflict ("already defined"), because it doesn't load the beamerposter package in addition, but just passes options to it:

Code: Select all

...
\textclass beamerposter
\begin_preamble
...
\PassOptionsToPackage{%
   orientation=portrait, % possible: portrait, landscape
    size=a0,% possible: a0b, a0, a1, a2, a3, a4, custom (with width=<val>,height=<val>)
    scale=1.4,% scaling of fonts
    debug% give verbose warnings and error messages
}{beamerposter}
...
In your case, I suggest to remove the line

Code: Select all

\usepackage{C:/Users/okotni/Desktop/beamerposter/beamerposter}
Stefan
LaTeX.org admin
Post Reply