I want to place figures on the front page of a two column document, something like http://frank.dellaert.com/pubs/Dellaert10iros.pdf and this(pdf).
The figure* allows to include images spread across full width of two column documents. But it has some limitations. Only top(t) placement works, and does not appear on the same page where they are defined. I found stfloats package, which solves the top placement restriction, but it still demands to be defined 1 page prior.
Any suggestions on how to solve this?
LaTeX forum ⇒ Graphics, Figures & Tables ⇒ wide figures in 1st page for two column documents
wide figures in 1st page for two column documents
Last edited by abhijit8 on Wed Nov 03, 2010 10:31 am, edited 1 time in total.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
wide figures in 1st page for two column documents
I see two approaches which only differ in the caption for the image right beneath the title.
Note that the blindtext package is only loaded for creating dummy text thus is not part of the solution.
Best regards and welcome to the board
Thorsten
- For the first document with caption.
\documentclass[11pt,a4paper,english]{article} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{babel} \usepackage[font=small,labelfont=bf,tableposition=top]{caption} \usepackage{multicol} \usepackage{blindtext} \title{Two column document with figure underneath title} \author{abhijit8} \begin{document} \maketitle \noindent \begin{minipage}{\textwidth} \centering\noindent \rule{0.75\linewidth}{0.5\linewidth} \captionof{figure}{\blindtext} \end{minipage} \begin{multicols}{2} \blinddocument \end{multicols} \end{document}
- For the second document without caption.
\documentclass[11pt,a4paper,english]{article} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{babel} \usepackage[font=small,labelfont=bf,tableposition=top]{caption} \usepackage{multicol} \usepackage{blindtext} \title{Two column document with image underneath title\\ \normalsize Approach 1} \author{abhijit8} \begin{document} \maketitle \noindent \begin{minipage}{\textwidth} \centering\noindent \rule{0.9\linewidth}{0.2\linewidth} \end{minipage} \begin{multicols}{2} \blinddocument \end{multicols} \end{document}
For this case there is a second solution.\documentclass[11pt,a4paper,twocolumn,english]{article} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{babel} \usepackage[font=small,labelfont=bf,tableposition=top]{caption} \usepackage{blindtext} \title{Two column document with image underneath title\\ \normalsize Approach 2} \author{abhijit8} \date{\rule{0.9\linewidth}{0.2\linewidth}} \begin{document} \maketitle \blinddocument \end{document}
Note that the blindtext package is only loaded for creating dummy text thus is not part of the solution.
Best regards and welcome to the board
Thorsten
LaTeX Community Moderator
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
wide figures in 1st page for two column documents
Thanks a lot for the solutions. Is there a way to do away with the multiciols environment, since i need to use floats like figures. I tried /twocolumn instead of \begin{multicols}{2}, but it forces a new page.
I have found an another solution, by the use of \begin{strip}..\end{strip} environment, included in the cuted package.
I have found an another solution, by the use of \begin{strip}..\end{strip} environment, included in the cuted package.
\documentclass[11pt,a4paper,two column,english]{article} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{babel} \usepackage[font=small,labelfont=bf,tableposition=top]{caption} \usepackage{blindtext} \usepackage{cuted} \title{Two column document with figure underneath title} \author{abhijit8} \begin{document} \maketitle \noindent \begin{strip} \centering\noindent \rule{0.75\linewidth}{0.5\linewidth} \captionof{figure}{\blindtext} \end{strip} \blinddocument \end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
wide figures in 1st page for two column documents
I can't really follow. You can use floats (starred versions) as usual within the multicols environment. As you already discovered on your own, the \twocolumn switch is no option.
LaTeX Community Moderator
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
wide figures in 1st page for two column documents
Sorry for the confusion. I was trying to say that I am not able to use standard figure/table (non-starred) in the multicols environment. I get an error:
Is there a way to use the standard floats inside multicols environment?
Otherwise, I am now able to get the desired output with the strip environment.
./new.tex:0:Floats and marginpars not allowed inside `multicols'environment!.
Is there a way to use the standard floats inside multicols environment?
Otherwise, I am now able to get the desired output with the strip environment.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
wide figures in 1st page for two column documents
abhijit8 wrote:[…] I was trying to say that I am not able to use standard figure/table (non-starred) in the multicols environment. […] Is there a way to use the standard floats inside multicols environment? […]
Perhaps you should be more precise about what you are after. The unstarred versions can't be used here. But if we are talking about figures and tables within one column of a multicolumn environment, you can use an approach that works with the caption package.
\documentclass[11pt,a4paper,twocolumn,english]{article} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \usepackage{babel} \usepackage[font=small,labelfont=bf,tableposition=top]{caption} \usepackage{blindtext} \usepackage{cuted} \title{Two column document with figure underneath title} \author{abhijit8} \begin{document} \maketitle \begin{strip} \centering\noindent \rule{0.75\linewidth}{0.5\linewidth} \captionof{figure}{\blindtext} \end{strip} \blindtext[2] \medskip \noindent \begin{minipage}{\linewidth} \centering \rule{0.75\linewidth}{0.5\linewidth} \captionof{figure}{The quick brown fox jumps over the lazy dog} \end{minipage} \medskip \blindtext[4] \end{document}
And thanks for bringing the very useful cuted package to my attention. It could be the solution to some older discussions about related problems here.
LaTeX Community Moderator
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Return to “Graphics, Figures & Tables”
Who is online
Users browsing this forum: No registered users and 5 guests