Tagged Questions
3
votes
1answer
68 views
Multiple listings styles
In using the listings package, how can I have a distinct \lstlistingname value for each type of listing.
Lets say my document has C++, R and Pseudo listings, and I would like the \lstlistingname ...
2
votes
1answer
104 views
Changing label name for algorithm
I have this algorithm:
\begin{algorithm}
\captionsetup[algorithm]{name=MegaAlgorithm}
\DontPrintSemicolon
\KwData{$G=(X,U)$ such that $G^{tc}$ is an order.}
\KwResult{$G’=(X,V)$ with $V\subseteq U$ ...
4
votes
2answers
105 views
How to change the caption name in the article class when using babel?
I have used the following lines in my preamble
\usepackage{babel}
\addto\extrasfrench{%
\providecommand{\og}{\leavevmode\flqq~}%
\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}%
}
...
1
vote
2answers
130 views
Caption format changing
I want my captions of figures to be formated like this:
1 pav. First Caption
2 pav. Second Caption
Furthermore, I need my captions to be centered.
How can I redefine this?
6
votes
1answer
111 views
Change caption of figure for references
I changed the caption of my figures running the following command (I'm using the babel package):
\addto\captionsngerman{\renewcommand{\figurename}{Abb.}}
If I use \autoref{$LABEL} to reference to ...
0
votes
1answer
154 views
How to change caption from “Figure #:” to “Appendix #:” [duplicate]
Possible Duplicate:
How to change the name of document elements like “Figure”, “Contents”, “Bibliography” etc.?
I was using minipage in LaTeX for my appendices in one of my English ...
3
votes
2answers
221 views
Change the word “Table” in table captions
I need to have tables with their numbers, just as when I use \caption.
My problem is that when I use the \caption it shows me like this:
Cuadro x.x: this is some table.
The word Cuadro is ...
5
votes
1answer
169 views
How to localize label using algorithm and algorithmic packages
I am writing a paper in Italian and I need to include pseudo code in my latex document so I am currently using the algorithm and algorithmic packages. At the top of every algorithm the label Algorithm ...
9
votes
2answers
3k views
Problem with command \captionsetup from package caption
The following MWE:
\documentclass[11pt]{memoir}
\usepackage{caption}
\captionsetup[table]{
listformat=empty,
tablename=Table,
justification=justified,
...
2
votes
1answer
68 views
Unset caption preface for figure [duplicate]
Possible Duplicate:
Change caption name of figures
I have a caption and it reads
Figure 1: etc....
I would like to replace "Figure" with "Image". I think the answer is similar to my ...
7
votes
1answer
312 views
How to specify the caption names in bilingual captions without babel or polyglossia?
I use Axel Sommerfeldt's bicaption package to setup bilingual captions.
bicaption needs babel's \selectlanguage to set the different caption names for different languages. However, I cannot use the ...
0
votes
2answers
100 views
Regarding Changing Captions and Including Them in Different Lists of Interest
I have created several large tables in Excel and MATLAB. Since it is very time-consuming to manually copy and paste these tables in LaTeX, I would like to include them as figures in LaTeX. I would ...
0
votes
1answer
268 views
Abbreviate “figure” [duplicate]
Possible Duplicate:
Change caption name of figures
I'm using scrbook for the document class. Is there an easy way to abbreviate "Figure 1" in order to have "Fig. 1" ? The proposed answer ...
17
votes
2answers
12k views
Change caption name of figures
How can I modify the caption name of a figure? For example I have
\caption{This is a figure.}
and by default the caption appears as
Figure 1: This is a figure.
However I want
Fig.1 - This ...
4
votes
4answers
2k views
How to change captions and dots?
I've received my master thesis from proofreader. I've received a lot of small things to fix but they're defined inside my document class which is report.
How to change caption name from "Table" to ...
5
votes
1answer
460 views
Redefining the label used in captions
You can redefine your caption labels with e.g. \renewcommand{\figurename}{Fig.}. Is there a way to do it just for certain figures/tables? I have an appendix and I would like to make figures/tables as ...