Thankyou very much Paul
That command worked, but interestingly it doesn't work for standard
figure float where caption 'Figure 0.X:' by default is below the
image.
I've used from the manual:
\renewcommand{\fnum@figure}{ ~\thefigure}
for standard figure floats to achieve the same result as your suggestion:
addto\captionsenglish{\renewcommand{\figurename}{}}
What remains is the rather ugly numeration format:
For example : 0.3: My beautiful painting, 2012
Is there any way to remove '0.3:' to just '3. '
Best Regards
Shane
\usepackage{babel}
\addto\captionsenglish{\renewcommand{\figurename}{}}
\usepackage[rightcaption]{sidecap}
% provides commands to set caption
% beside tables/images
%I @renewommand below I deleted a word inputted before the ~ and left
spaces before the ~. (Shane)
\renewcommand{\fnum@figure}{ ~\thefigure}
\renewcommand{\thefigure}{\arabic{section}.\arabic{figure}}
\newcommand{\TabBesBeg}[1][1.0]{%
\let\MyTable\table
\let\MyEndtable\endtable
\renewenvironment{table}[1]{\begin{SCtable}[#1]##1}{\end{SCtable}}}
\newcommand{\TabBesEnd}{%
\let\table\MyTable
\let\endtable\MyEndtable}
\newcommand{\FigBesBeg}[1][1.0]{%
\let\MyFigure\figure
\let\MyEndfigure\endfigure
\renewenvironment{figure}[1]{\begin{SCfigure}[#1]##1}{\end{SCfigure}}}
\newcommand{\FigBesEnd}{%
\let\figure\MyFigure
\let\endfigure\MyEndfigure}
On 22/01/2017, Paul A. Rubin <[email protected]> wrote:
> On 01/21/2017 07:42 PM, Shane Eastwood wrote:
>>
>> Hi Everyone,
>>
>> I am using /sidecap/ in a figure float to have the caption on the left
>> or right side of a figure rather than below the figure, How to remove
>> or replace "figure' with another caption when using /sidecap/? For
>> example, instead of:
>>
>> Figure 0.1 : /My beautful painting/ 2012
>>
>> I would prefer
>>
>> 1. /My beautiful painting/ 2012
>>
>> Please see attached Lyx file, and an image for the command if needed.
>>
>> Any assistance greatly appreciated.
>>
>> Shane
>>
> A couple of notes: the image you included did not match the one named in
> the document; and you have \usepackage{babel} twice in the preamble.
>
> Given that you are using babel, add this to your preamble:
>
> \addto\captionsenglish{\renewcommand{\figurename}{Image}}
>
> You can change "Image" to whatever label you want (or nothing, to get no
> label other than the figure number).
>
> Paul
>
>
>