General ⇒ Cross column images
-
- Posts: 4
- Joined: Fri May 09, 2008 9:49 pm
Cross column images
I have following problem in latex : I want to have a figure which spans over both columns of my document, like here on page 11:
http://www.systems.caltech.edu/dsp/stud ... o_stap.pdf
How should I realize that ?
Thank you very much !
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Cross column images
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Cross column images
welcome to the LaTeX Community board!
Have a look here in the UK TeX FAQ: Floats in multicolumn setting
Stefan
-
- Posts: 4
- Joined: Fri May 09, 2008 9:49 pm
Re: Cross column images
My preamble is :
\makeatletter
\def\input@path{{\string"/dadas\string"/}}
\makeatother
\documentclass[10pt,french]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=2.5cm,bmargin=2.5cm,lmargin=2.5cm,rmargin=2.5cm}
\usepackage{float}
\usepackage{textcomp}
\usepackage{graphicx}
\usepackage{setspace}
\setstretch{1.1}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\newcommand{\lyxline}[1][1pt]{%
\par\noindent%
\rule[.5ex]{\linewidth}{#1}\par}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage{multicol}
\usepackage{geometry}
\usepackage{wrapfig}
\usepackage{babel}
\addto\extrasfrench{\providecommand{\og}{\leavevmode\flqq~}\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}}
\makeatother
However : I used the thing with {figure*}, but it does not work!
it's so strange, and I absolutely need it because I have to finish the document for tomorrow!
Cross column images
Just a casual note: twice in this day I've seen this very same article referenced:
http://www.cqf.info/forum/viewtopic.php ... 5aa62a775e
-
- Posts: 4
- Joined: Fri May 09, 2008 9:49 pm
Re: Cross column images
\begin{centering}
\includegraphics[scale=0.7]{\string"images Michael/fig7\string".png}
\par\end{centering}
\caption{.}
\end{figure*}
Yep, I found this file I referenced to, because I searched on the forum before and found that this document really describes what I need. The problem in fact is if I use the {figure*}, the images disappears or appears at the end of the document. I use LyX.
Thanks!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Cross column images
This is not what gmedina expects to be a minimal working example (MWE). And so do I. So, please follow the link and get familiar with creating such a MWE. Otherwise giving specific help becomes very difficult.helpercenter wrote:Code: Select all
\begin{figure*}[H] \begin{centering} \includegraphics[scale=0.7]{\string"images Michael/fig7\string".png} \par\end{centering} \caption{Chantier de moulage.} \end{figure*}
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Cross column images
perhaps the grffile package could be useful for you.helpercenter wrote:\includegraphics[scale=0.7]{\string"images Michael/fig7\string".png}
Stefan
-
- Posts: 4
- Joined: Fri May 09, 2008 9:49 pm