GeneralPackage caption Error: For a successful cooperation we need at least version(caption) is available.\begin{document}

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
sreemoyee07
Posts: 3
Joined: Tue May 02, 2017 6:21 am

Package caption Error: For a successful cooperation we need at least version(caption) is available.\begin{document}

Post by sreemoyee07 »

Package caption Error: For a successful cooperation we need at least version(caption) is available. \begin{document}
\caption will not be redefined since it's already(caption) redefined by a document class or package which is(caption) unknown to the caption package.

Please help how to solve this problem.

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

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Package caption Error: For a successful cooperation we need at least version(caption) is available.\begin{document}

Post by cgnieder »

can you please show a Infominimal working example which produces this error? Otherwise we won't be able to say much.

The error message is produced by the caption package through its \caption@If@Package@Loaded command. This command is used two times by the caption package.
  • Once for checking if the float package has been loaded and if its version is at least 2001/11/08 v1.3d and
  • once for checking if the floatrow package has been loaded and its version is at least 2007/08/24 v0.2a
The error should mean that one of those packages has been loaded but is too old. This suggests that you probably have a rather old TeX distribution (the current version of float is from 2001 and the current version of floatrow from 2009!) and should update. But the real problem could be something different which we won't be able to tell without a Infominimal working example.
site moderator & package author
sreemoyee07
Posts: 3
Joined: Tue May 02, 2017 6:21 am

Package caption Error: For a successful cooperation we need at least version(caption) is available.\begin{document}

Post by sreemoyee07 »

Code: Select all

\documentclass[a4paper, 12pt,oneside]{book}
\input{Preamble_matter}
\usepackage{epstopdf}
\usepackage{caption}
\usepackage{subfigure}
\usepackage{indentfirst}
\begin{document}                                %error is occurring in this line 
%\input{Front_matter_new}

\markboth
 {\Headingsize \it Chapter 1: Introduction}
  {\Headingsize \it Chapter 1:Introduction}
\input{Introduction_chapter}

  \markboth
{\Headingsize \it Chapter 2: Synthesis Schemes}
{\Headingsize \it Chapter 2: Synthesis Schemes}
\input{chapter2}
Last edited by Stefan Kottwitz on Tue May 02, 2017 12:53 pm, edited 1 time in total.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Package caption Error: For a successful cooperation we need at least version(caption) is available.\begin{document}

Post by Stefan Kottwitz »

Welcome to the forum!

Can you please insert the command \listfiles into your document preamble, compile again, and post the .log file here as attachment?

Stefan
LaTeX.org admin
Post Reply