figref with subfigure and parantheses
I use IEEEtran with subfigure and figref.
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{foo}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{bar}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
When I use which is shown in subref{fig:test-foo}.
I get:
which is shown in Fig. 16a.
However, I want to see
which is shown in Fig. 16(a).
I have tried everything I could find, including variations of
usepackage[subrefformat=parens,labelformat=parens]{subfig}
and
renewcommand{thesubfigure}{(alph{subfigure})}
The options in the first don't seem to have any effect with figref
. When I use renewcommand
, figref
works but the captions in the figure itself get double parantheses, e.g. ((a)) Foo.
cross-referencing subfloats subfig
add a comment |
I use IEEEtran with subfigure and figref.
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{foo}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{bar}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
When I use which is shown in subref{fig:test-foo}.
I get:
which is shown in Fig. 16a.
However, I want to see
which is shown in Fig. 16(a).
I have tried everything I could find, including variations of
usepackage[subrefformat=parens,labelformat=parens]{subfig}
and
renewcommand{thesubfigure}{(alph{subfigure})}
The options in the first don't seem to have any effect with figref
. When I use renewcommand
, figref
works but the captions in the figure itself get double parantheses, e.g. ((a)) Foo.
cross-referencing subfloats subfig
You can useref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.
– John Kormylo
1 hour ago
add a comment |
I use IEEEtran with subfigure and figref.
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{foo}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{bar}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
When I use which is shown in subref{fig:test-foo}.
I get:
which is shown in Fig. 16a.
However, I want to see
which is shown in Fig. 16(a).
I have tried everything I could find, including variations of
usepackage[subrefformat=parens,labelformat=parens]{subfig}
and
renewcommand{thesubfigure}{(alph{subfigure})}
The options in the first don't seem to have any effect with figref
. When I use renewcommand
, figref
works but the captions in the figure itself get double parantheses, e.g. ((a)) Foo.
cross-referencing subfloats subfig
I use IEEEtran with subfigure and figref.
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{foo}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{bar}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
When I use which is shown in subref{fig:test-foo}.
I get:
which is shown in Fig. 16a.
However, I want to see
which is shown in Fig. 16(a).
I have tried everything I could find, including variations of
usepackage[subrefformat=parens,labelformat=parens]{subfig}
and
renewcommand{thesubfigure}{(alph{subfigure})}
The options in the first don't seem to have any effect with figref
. When I use renewcommand
, figref
works but the captions in the figure itself get double parantheses, e.g. ((a)) Foo.
cross-referencing subfloats subfig
cross-referencing subfloats subfig
edited 5 mins ago
AndréC
9,69311547
9,69311547
asked 3 hours ago
divBdivB
1184
1184
You can useref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.
– John Kormylo
1 hour ago
add a comment |
You can useref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.
– John Kormylo
1 hour ago
You can use
ref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.– John Kormylo
1 hour ago
You can use
ref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.– John Kormylo
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477957%2ffigref-with-subfigure-and-parantheses%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
add a comment |
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
add a comment |
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
answered 32 mins ago
JPGJPG
1,077310
1,077310
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477957%2ffigref-with-subfigure-and-parantheses%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You can use
ref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.– John Kormylo
1 hour ago