SlideShare a Scribd company logo
1 of 11
Download to read offline
How to make nice-looking framed boxes in LaTeX
                    articles
Examples of framed, mdframed, fancybox and bclogo packages


                        Vesa Linja-aho

                             Metropolia


                         July 29, 2011




                   Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
Using framed boxes in Beamer




                                     A
     When making lecture slides with LTEX and Beamer package,
     you can emphasize important things (theorems, facts,
     common mistakes etc.) by using block, exampleblock and
     alertblock environments, as demonstrated on the next slide.




                      Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
Example of block environments in Beamer

  This is a block
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac
  arcu est, vel posuere velit. In congue erat vel lorem ornare pretium.

  This is an exampleblock
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac
  arcu est, vel posuere velit. In congue erat vel lorem ornare pretium.

  This is an alertblock
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac
  arcu est, vel posuere velit. In congue erat vel lorem ornare pretium.

  Syntax:
  begin{block}{Title of the block}Some text...end{block}
  (for block, exampleblock or alertblock).

                         Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
Problem: what if you are not making slides but a book or
article?




      Beamer block environments only work inside beamer. If you
      are writing an article or a book, you must find another way.
      There are a number of LaTeX packages for making framed
      boxes. On the following slides, I’ll introduce some of them.




                        Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
The simplest way: framebox




                        This is a framebox.

  No extra packages are needed. The code:

  framebox{This is a framebox.}




                       Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
The package framed
  First use the package and define the shading color:
  usepackage{framed,color}
  definecolor{shadecolor}{rgb}{1,0.8,0.3}1

                        This is a framed text.


                        This is a shaded text.

                      This is a snugshade text.

                       This is a text with leftbar.
  The code (replace ”shaded” with frame, snugshade or leftbar):
  begin{shaded}This is a shaded text. end{shaded}
    1
      Read more on defining colors:
  http://en.wikibooks.org/wiki/LaTeX/Colors
                        Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
The package fancybox



  First select the package: usepackage{fancybox}
   This is a shadowbox.

   This is a doublebox.
  §                   ¤
  This is an ovalbox. ¥
  ¦
  §                   ¤
  This is an Ovalbox. ¥
  ¦
  The code (replace ”shadowbox” with doublebox, Ovalbox etc.):

  shadowbox{This is a shadowbox.}




                          Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
The package mdframed


  First select the package: usepackage{mdframed}
  This is like the regular framed-package, but allows the frame to
  continue on multiple pages (but not on Beamer slides, only in
  article, book etc.) and allows user to customize margins,
  background color, line color etc.
    This is an mdframed text with yellow background.
  The code:

  begin{mdframed}[backgroundcolor=yellow]
  This is an mdframed text with yellow background.
  end{mdframed}




                         Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
The package bclogo


  First select the package: usepackage[tikz]{bclogo}
       Bclogo seems to be the most versatile!
       This box is made with bclogo. Corners are rounded and I love
       that crayon :-).
  The code:
  begin{bclogo}[couleur = blue!30,arrondi = 0.1,
  logo = bccrayon, ombre = true]{Bclogo seems to be the most versatile!}
  This box is made with bclogo. Corners are rounded and I love that crayon :-).
  end{bclogo}

  The documentation is in French, but it can be understood very
  well (there are multiple examples in the documentation).



                          Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
A couple of interesting ”unofficial” packages



  For transparent shadows: http://osdir.com/ml/tex.latex.
  beamer.general/2007-06/msg00070.html
   This is a boxed environment with
   semi-transparent shadow.

  The code:

  begin{shadowblock}{6cm}
  This is a boxed environment with semi-transparent shadow.
  end{shadowblock}




                     Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles
A couple of interesting ”unofficial” packages
  For drawing signal flow diagrams:
  http://pgf.cvs.sourceforge.net/viewvc/pgf/pgf/
  incoming/KarlheinzOchs/

     Input terminal

                          x(t)


  The code:

  begin{signalflow}{Input terminal}
     node[input]      (in)                {$x(t)$};
     node[coordinate] (c) [right from=in] {};
     % signal path
     path[r>] (in) -- (c);
  end{signalflow}

                      Vesa Linja-aho   How to make nice-looking framed boxes in LaTeX articles

More Related Content

What's hot

What's hot (20)

Lagrange's method
Lagrange's methodLagrange's method
Lagrange's method
 
Estimating Future Initial Margin with Machine Learning
Estimating Future Initial Margin with Machine LearningEstimating Future Initial Margin with Machine Learning
Estimating Future Initial Margin with Machine Learning
 
Introduction to Computer theory (Automata Theory) 2nd Edition By Denial I.A. ...
Introduction to Computer theory (Automata Theory) 2nd Edition By Denial I.A. ...Introduction to Computer theory (Automata Theory) 2nd Edition By Denial I.A. ...
Introduction to Computer theory (Automata Theory) 2nd Edition By Denial I.A. ...
 
Finite Automata in compiler design
Finite Automata in compiler designFinite Automata in compiler design
Finite Automata in compiler design
 
Matlab-fundamentals of matlab-2
Matlab-fundamentals of matlab-2Matlab-fundamentals of matlab-2
Matlab-fundamentals of matlab-2
 
Numerical method for solving non linear equations
Numerical method for solving non linear equationsNumerical method for solving non linear equations
Numerical method for solving non linear equations
 
ZK Study Club: Sumcheck Arguments and Their Applications
ZK Study Club: Sumcheck Arguments and Their ApplicationsZK Study Club: Sumcheck Arguments and Their Applications
ZK Study Club: Sumcheck Arguments and Their Applications
 
Lagrange equation and its application
Lagrange equation and its applicationLagrange equation and its application
Lagrange equation and its application
 
Orthogonal Matrices
Orthogonal MatricesOrthogonal Matrices
Orthogonal Matrices
 
Bert
BertBert
Bert
 
Generating Natural-Language Text with Neural Networks
Generating Natural-Language Text with Neural NetworksGenerating Natural-Language Text with Neural Networks
Generating Natural-Language Text with Neural Networks
 
BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
BERT: Pre-training of Deep Bidirectional Transformers for Language UnderstandingBERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
 
Quadratic programming (Tool of optimization)
Quadratic programming (Tool of optimization)Quadratic programming (Tool of optimization)
Quadratic programming (Tool of optimization)
 
LaTeX for beginners
LaTeX for beginnersLaTeX for beginners
LaTeX for beginners
 
Greedy algorithms
Greedy algorithmsGreedy algorithms
Greedy algorithms
 
A note on word embedding
A note on word embeddingA note on word embedding
A note on word embedding
 
Chomsky Normal Form
Chomsky Normal FormChomsky Normal Form
Chomsky Normal Form
 
word level analysis
word level analysis word level analysis
word level analysis
 
Initial Value Problems
Initial Value ProblemsInitial Value Problems
Initial Value Problems
 
Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2
 

Similar to How to make boxed text with LaTeX

Global Versus Local
Global Versus LocalGlobal Versus Local
Global Versus Local
LiquidHub
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
rajinooka
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
TaraLeander
 
Introduction to LaTeX - Dumitrescu (1).ppt
Introduction to LaTeX - Dumitrescu (1).pptIntroduction to LaTeX - Dumitrescu (1).ppt
Introduction to LaTeX - Dumitrescu (1).ppt
Amit Bairwa
 

Similar to How to make boxed text with LaTeX (20)

LaTeX Beamer Small Tips
LaTeX Beamer Small TipsLaTeX Beamer Small Tips
LaTeX Beamer Small Tips
 
Chap05 scr
Chap05 scrChap05 scr
Chap05 scr
 
LaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introductionLaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introduction
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabati
 
How to use LaTeX and Beamer to prepare presentation for Slideshare
How to use LaTeX and Beamer to prepare presentation for SlideshareHow to use LaTeX and Beamer to prepare presentation for Slideshare
How to use LaTeX and Beamer to prepare presentation for Slideshare
 
Write effectlively in late x
Write effectlively in late xWrite effectlively in late x
Write effectlively in late x
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
 
Global Versus Local
Global Versus LocalGlobal Versus Local
Global Versus Local
 
latex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Techlatex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Tech
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
 
Introduction to LaTeX:for begi nners to
Introduction  to LaTeX:for begi nners toIntroduction  to LaTeX:for begi nners to
Introduction to LaTeX:for begi nners to
 
LaTeX for Engineer.ppt
LaTeX for Engineer.pptLaTeX for Engineer.ppt
LaTeX for Engineer.ppt
 
Introduction to LaTeX - Dumitrescu.ppt - It is a slide on the internet explai...
Introduction to LaTeX - Dumitrescu.ppt - It is a slide on the internet explai...Introduction to LaTeX - Dumitrescu.ppt - It is a slide on the internet explai...
Introduction to LaTeX - Dumitrescu.ppt - It is a slide on the internet explai...
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
 
Introduction to LaTeX - Dumitrescu (1).ppt
Introduction to LaTeX - Dumitrescu (1).pptIntroduction to LaTeX - Dumitrescu (1).ppt
Introduction to LaTeX - Dumitrescu (1).ppt
 
ورشة العمل 7
ورشة العمل 7ورشة العمل 7
ورشة العمل 7
 
محاضرة 7
محاضرة 7محاضرة 7
محاضرة 7
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginners
 

More from Vesa Linja-aho

Sähköturvallisuustutkinto syksy 2013
Sähköturvallisuustutkinto syksy 2013Sähköturvallisuustutkinto syksy 2013
Sähköturvallisuustutkinto syksy 2013
Vesa Linja-aho
 

More from Vesa Linja-aho (20)

Totta ja tarua sähköautoista ja niiden lataamisesta
Totta ja tarua sähköautoista ja niiden lataamisestaTotta ja tarua sähköautoista ja niiden lataamisesta
Totta ja tarua sähköautoista ja niiden lataamisesta
 
Sähköajoneuvojen latauksen ja latausverkoston tilanne tänään ja huomenna
Sähköajoneuvojen latauksen ja latausverkoston tilanne tänään ja huomennaSähköajoneuvojen latauksen ja latausverkoston tilanne tänään ja huomenna
Sähköajoneuvojen latauksen ja latausverkoston tilanne tänään ja huomenna
 
Yritys-oppilaitosyhteistyö 2010-luvulla
Yritys-oppilaitosyhteistyö 2010-luvullaYritys-oppilaitosyhteistyö 2010-luvulla
Yritys-oppilaitosyhteistyö 2010-luvulla
 
Asiantuntijana sosiaalisessa mediassa
Asiantuntijana sosiaalisessa mediassaAsiantuntijana sosiaalisessa mediassa
Asiantuntijana sosiaalisessa mediassa
 
Oppimateriaalit avoimiksi
Oppimateriaalit avoimiksiOppimateriaalit avoimiksi
Oppimateriaalit avoimiksi
 
Lukion fysiikan opetussuunnitelmauudistus - ehdotukseni
Lukion fysiikan opetussuunnitelmauudistus - ehdotukseniLukion fysiikan opetussuunnitelmauudistus - ehdotukseni
Lukion fysiikan opetussuunnitelmauudistus - ehdotukseni
 
Mitä ovat avoimet oppimateriaalit?
Mitä ovat avoimet oppimateriaalit?Mitä ovat avoimet oppimateriaalit?
Mitä ovat avoimet oppimateriaalit?
 
Hybridi-, sähkö- ja kaasuautojen turvallisuusperusteita pelastushenkilöstölle
Hybridi-, sähkö- ja kaasuautojen turvallisuusperusteita pelastushenkilöstölleHybridi-, sähkö- ja kaasuautojen turvallisuusperusteita pelastushenkilöstölle
Hybridi-, sähkö- ja kaasuautojen turvallisuusperusteita pelastushenkilöstölle
 
Ajoneuvojen apulaitteiden virrankulutus ja sen aiheuttamat haasteet
Ajoneuvojen apulaitteiden virrankulutus ja sen aiheuttamat haasteetAjoneuvojen apulaitteiden virrankulutus ja sen aiheuttamat haasteet
Ajoneuvojen apulaitteiden virrankulutus ja sen aiheuttamat haasteet
 
Uusi SFS 6002 (3. painos) ottaa autoalan huomioon
Uusi SFS 6002 (3. painos) ottaa autoalan huomioonUusi SFS 6002 (3. painos) ottaa autoalan huomioon
Uusi SFS 6002 (3. painos) ottaa autoalan huomioon
 
Avoimuuden esteet
Avoimuuden esteetAvoimuuden esteet
Avoimuuden esteet
 
Metropolia Staff Week: Social Media and New Tools for Administrative Staff
Metropolia Staff Week: Social Media and New Tools for Administrative StaffMetropolia Staff Week: Social Media and New Tools for Administrative Staff
Metropolia Staff Week: Social Media and New Tools for Administrative Staff
 
Sähköinen liikenne nyt ja tulevaisuudessa (Sähköpäivä 2014)
Sähköinen liikenne nyt ja tulevaisuudessa (Sähköpäivä 2014)Sähköinen liikenne nyt ja tulevaisuudessa (Sähköpäivä 2014)
Sähköinen liikenne nyt ja tulevaisuudessa (Sähköpäivä 2014)
 
Bitcoin ja kirjanpito - kirjanpitolautakunnan lausunto
Bitcoin ja kirjanpito - kirjanpitolautakunnan lausuntoBitcoin ja kirjanpito - kirjanpitolautakunnan lausunto
Bitcoin ja kirjanpito - kirjanpitolautakunnan lausunto
 
Tekijänoikeuskoulutus opettajille toukokuu 2014
Tekijänoikeuskoulutus opettajille toukokuu 2014Tekijänoikeuskoulutus opettajille toukokuu 2014
Tekijänoikeuskoulutus opettajille toukokuu 2014
 
Alustava versio kommenteille: Pelastusalan oppimateriaali (v. 1.1)
Alustava versio kommenteille: Pelastusalan oppimateriaali (v. 1.1)Alustava versio kommenteille: Pelastusalan oppimateriaali (v. 1.1)
Alustava versio kommenteille: Pelastusalan oppimateriaali (v. 1.1)
 
Sähköturvallisuustutkinto syksy 2013
Sähköturvallisuustutkinto syksy 2013Sähköturvallisuustutkinto syksy 2013
Sähköturvallisuustutkinto syksy 2013
 
Kuinka bloggaaminen kehittää asiantuntijan ammattikuvaa ja henkilöbrändiä sek...
Kuinka bloggaaminen kehittää asiantuntijan ammattikuvaa ja henkilöbrändiä sek...Kuinka bloggaaminen kehittää asiantuntijan ammattikuvaa ja henkilöbrändiä sek...
Kuinka bloggaaminen kehittää asiantuntijan ammattikuvaa ja henkilöbrändiä sek...
 
Avointa oppimateriaalia talkoilla
Avointa oppimateriaalia talkoillaAvointa oppimateriaalia talkoilla
Avointa oppimateriaalia talkoilla
 
Will the Small Screen Kill Wikipedia?
Will the Small Screen Kill Wikipedia?Will the Small Screen Kill Wikipedia?
Will the Small Screen Kill Wikipedia?
 

Recently uploaded

KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
Cara Menggugurkan Kandungan 087776558899
 
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Morcall Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
vikas rana
 
the Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationthe Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentation
brynpueblos04
 

Recently uploaded (14)

WOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptxWOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptx
 
Pokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy TheoryPokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy Theory
 
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)
 
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)
 
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...
 
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)
 
(Aarini) Russian Call Girls Surat Call Now 8250077686 Surat Escorts 24x7
(Aarini) Russian Call Girls Surat Call Now 8250077686 Surat Escorts 24x7(Aarini) Russian Call Girls Surat Call Now 8250077686 Surat Escorts 24x7
(Aarini) Russian Call Girls Surat Call Now 8250077686 Surat Escorts 24x7
 
Top Rated Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
 
(Anamika) VIP Call Girls Navi Mumbai Call Now 8250077686 Navi Mumbai Escorts ...
(Anamika) VIP Call Girls Navi Mumbai Call Now 8250077686 Navi Mumbai Escorts ...(Anamika) VIP Call Girls Navi Mumbai Call Now 8250077686 Navi Mumbai Escorts ...
(Anamika) VIP Call Girls Navi Mumbai Call Now 8250077686 Navi Mumbai Escorts ...
 
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)
 
LC_YouSaidYes_NewBelieverBookletDone.pdf
LC_YouSaidYes_NewBelieverBookletDone.pdfLC_YouSaidYes_NewBelieverBookletDone.pdf
LC_YouSaidYes_NewBelieverBookletDone.pdf
 
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Morcall Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
 
the Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationthe Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentation
 

How to make boxed text with LaTeX

  • 1. How to make nice-looking framed boxes in LaTeX articles Examples of framed, mdframed, fancybox and bclogo packages Vesa Linja-aho Metropolia July 29, 2011 Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 2. Using framed boxes in Beamer A When making lecture slides with LTEX and Beamer package, you can emphasize important things (theorems, facts, common mistakes etc.) by using block, exampleblock and alertblock environments, as demonstrated on the next slide. Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 3. Example of block environments in Beamer This is a block Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac arcu est, vel posuere velit. In congue erat vel lorem ornare pretium. This is an exampleblock Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac arcu est, vel posuere velit. In congue erat vel lorem ornare pretium. This is an alertblock Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac arcu est, vel posuere velit. In congue erat vel lorem ornare pretium. Syntax: begin{block}{Title of the block}Some text...end{block} (for block, exampleblock or alertblock). Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 4. Problem: what if you are not making slides but a book or article? Beamer block environments only work inside beamer. If you are writing an article or a book, you must find another way. There are a number of LaTeX packages for making framed boxes. On the following slides, I’ll introduce some of them. Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 5. The simplest way: framebox This is a framebox. No extra packages are needed. The code: framebox{This is a framebox.} Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 6. The package framed First use the package and define the shading color: usepackage{framed,color} definecolor{shadecolor}{rgb}{1,0.8,0.3}1 This is a framed text. This is a shaded text. This is a snugshade text. This is a text with leftbar. The code (replace ”shaded” with frame, snugshade or leftbar): begin{shaded}This is a shaded text. end{shaded} 1 Read more on defining colors: http://en.wikibooks.org/wiki/LaTeX/Colors Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 7. The package fancybox First select the package: usepackage{fancybox} This is a shadowbox. This is a doublebox. § ¤ This is an ovalbox. ¥ ¦ § ¤ This is an Ovalbox. ¥ ¦ The code (replace ”shadowbox” with doublebox, Ovalbox etc.): shadowbox{This is a shadowbox.} Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 8. The package mdframed First select the package: usepackage{mdframed} This is like the regular framed-package, but allows the frame to continue on multiple pages (but not on Beamer slides, only in article, book etc.) and allows user to customize margins, background color, line color etc. This is an mdframed text with yellow background. The code: begin{mdframed}[backgroundcolor=yellow] This is an mdframed text with yellow background. end{mdframed} Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 9. The package bclogo First select the package: usepackage[tikz]{bclogo} Bclogo seems to be the most versatile! This box is made with bclogo. Corners are rounded and I love that crayon :-). The code: begin{bclogo}[couleur = blue!30,arrondi = 0.1, logo = bccrayon, ombre = true]{Bclogo seems to be the most versatile!} This box is made with bclogo. Corners are rounded and I love that crayon :-). end{bclogo} The documentation is in French, but it can be understood very well (there are multiple examples in the documentation). Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 10. A couple of interesting ”unofficial” packages For transparent shadows: http://osdir.com/ml/tex.latex. beamer.general/2007-06/msg00070.html This is a boxed environment with semi-transparent shadow. The code: begin{shadowblock}{6cm} This is a boxed environment with semi-transparent shadow. end{shadowblock} Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles
  • 11. A couple of interesting ”unofficial” packages For drawing signal flow diagrams: http://pgf.cvs.sourceforge.net/viewvc/pgf/pgf/ incoming/KarlheinzOchs/ Input terminal x(t) The code: begin{signalflow}{Input terminal} node[input] (in) {$x(t)$}; node[coordinate] (c) [right from=in] {}; % signal path path[r>] (in) -- (c); end{signalflow} Vesa Linja-aho How to make nice-looking framed boxes in LaTeX articles