add two horizontal lines between a figure and a table Announcing the arrival of Valued...

Was Objective-C really a hindrance to Apple software development?

Philosophers who were composers?

Why doesn't the university give past final exams' answers?

What's called a person who works as someone who puts products on shelves in stores?

What do you call an IPA symbol that lacks a name (e.g. ɲ)?

false 'Security alert' from Google - every login generates mails from 'no-reply@accounts.google.com'

Where to find documentation for `whois` command options?

Why do people think Winterfell crypts is the safest place for women, children & old people?

Are there existing rules/lore for MTG planeswalkers?

How long can a nation maintain a technological edge over the rest of the world?

Preserving file and folder permissions with rsync

In search of the origins of term censor, I hit a dead end stuck with the greek term, to censor, λογοκρίνω

Is it OK if I do not take the receipt in Germany?

My admission is revoked after accepting the admission offer

What is ls Largest Number Formed by only moving two sticks in 508?

Israeli soda type drink

A journey... into the MIND

What helicopter has the most rotor blades?

Is it appropriate to mention a relatable company blog post when you're asked about the company?

Why would the Overseers waste their stock of slaves on the Game?

Does Prince Arnaud cause someone holding the Princess to lose?

Simulate round-robin tournament draw

Raising a bilingual kid. When should we introduce the majority language?

How to compute a Jacobian using polar coordinates?



add two horizontal lines between a figure and a table



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30 pm US/Eastern)How to put two tables in a table* element so that the tables appear side by side in a two column layout scientific paper?Why are my Images not correctly centered?Add source to figure captionfloat row figure box - two lines in captionTable caption not appearing in PNAS document classAdd vertical space between two tables in a single figureDistance between caption and figureHow to add horizontal space between two centered subfigures?Figure number and caption on two linesTikZ datavisualization: pins / labels add whitespace between figure and caption












0















I want to add two horizontal lines between each figure and each table but I have to add this command everytime : rule[0.6ex]{textwidth}{0.3mm}



And how can I reduce the red space between the caption and the figure ? Is there a way to put the figure and table in the center without adding begin{center} ... end{center} ? If I can do that, I won't have the red space anymore I guess.



MWE :



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
begin{document}
begin{figure}
caption{Figure-Example.}
begin{center}
rule[0.6ex]{textwidth}{0.3mm}
includegraphics[scale=0.25]{logo.png}
rule[0.6ex]{textwidth}{0.3mm}
end{center}
textit{Source :} href{google.com}{https://google.com}
end{figure}
%Table :
begin{table}
caption{Table-Example.}
begin{center}
rule[0.6ex]{textwidth}{0.3mm}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
rule[0.6ex]{textwidth}{0.3mm}
end{center}
textit{Source :} href{google.com}{https://google.com}
label{tab:my_label}
end{table}
end{document}


The result :



enter image description here










share|improve this question














bumped to the homepage by Community 15 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Do not use the center environment within a figure: it adds unwanted vertical spacing. Use centering instead.

    – Bernard
    May 28 '18 at 8:48













  • But if i use centering I will have my textit{Source :} href{google.com}{https://google.com} at the center as well.

    – Red One
    May 28 '18 at 8:54











  • For that you can make a group. Captions are centred by default – how do you manage it?

    – Bernard
    May 28 '18 at 9:00











  • Well i just tried something like this caption*{textit{Source} : href{google.com}{https://google.com}} with centering and it's not bad at all, so now I have to figure out how to add 2 lines without adding rule[0.6ex]{textwidth}{0.3mm} everytime.

    – Red One
    May 28 '18 at 9:04






  • 1





    You should take a look at the documentation of the float package: it defines a ruled float style. You might define a ruledfigure and a ruledtable environments.

    – Bernard
    May 28 '18 at 10:02
















0















I want to add two horizontal lines between each figure and each table but I have to add this command everytime : rule[0.6ex]{textwidth}{0.3mm}



And how can I reduce the red space between the caption and the figure ? Is there a way to put the figure and table in the center without adding begin{center} ... end{center} ? If I can do that, I won't have the red space anymore I guess.



MWE :



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
begin{document}
begin{figure}
caption{Figure-Example.}
begin{center}
rule[0.6ex]{textwidth}{0.3mm}
includegraphics[scale=0.25]{logo.png}
rule[0.6ex]{textwidth}{0.3mm}
end{center}
textit{Source :} href{google.com}{https://google.com}
end{figure}
%Table :
begin{table}
caption{Table-Example.}
begin{center}
rule[0.6ex]{textwidth}{0.3mm}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
rule[0.6ex]{textwidth}{0.3mm}
end{center}
textit{Source :} href{google.com}{https://google.com}
label{tab:my_label}
end{table}
end{document}


The result :



enter image description here










share|improve this question














bumped to the homepage by Community 15 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Do not use the center environment within a figure: it adds unwanted vertical spacing. Use centering instead.

    – Bernard
    May 28 '18 at 8:48













  • But if i use centering I will have my textit{Source :} href{google.com}{https://google.com} at the center as well.

    – Red One
    May 28 '18 at 8:54











  • For that you can make a group. Captions are centred by default – how do you manage it?

    – Bernard
    May 28 '18 at 9:00











  • Well i just tried something like this caption*{textit{Source} : href{google.com}{https://google.com}} with centering and it's not bad at all, so now I have to figure out how to add 2 lines without adding rule[0.6ex]{textwidth}{0.3mm} everytime.

    – Red One
    May 28 '18 at 9:04






  • 1





    You should take a look at the documentation of the float package: it defines a ruled float style. You might define a ruledfigure and a ruledtable environments.

    – Bernard
    May 28 '18 at 10:02














0












0








0








I want to add two horizontal lines between each figure and each table but I have to add this command everytime : rule[0.6ex]{textwidth}{0.3mm}



And how can I reduce the red space between the caption and the figure ? Is there a way to put the figure and table in the center without adding begin{center} ... end{center} ? If I can do that, I won't have the red space anymore I guess.



MWE :



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
begin{document}
begin{figure}
caption{Figure-Example.}
begin{center}
rule[0.6ex]{textwidth}{0.3mm}
includegraphics[scale=0.25]{logo.png}
rule[0.6ex]{textwidth}{0.3mm}
end{center}
textit{Source :} href{google.com}{https://google.com}
end{figure}
%Table :
begin{table}
caption{Table-Example.}
begin{center}
rule[0.6ex]{textwidth}{0.3mm}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
rule[0.6ex]{textwidth}{0.3mm}
end{center}
textit{Source :} href{google.com}{https://google.com}
label{tab:my_label}
end{table}
end{document}


The result :



enter image description here










share|improve this question














I want to add two horizontal lines between each figure and each table but I have to add this command everytime : rule[0.6ex]{textwidth}{0.3mm}



And how can I reduce the red space between the caption and the figure ? Is there a way to put the figure and table in the center without adding begin{center} ... end{center} ? If I can do that, I won't have the red space anymore I guess.



MWE :



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
begin{document}
begin{figure}
caption{Figure-Example.}
begin{center}
rule[0.6ex]{textwidth}{0.3mm}
includegraphics[scale=0.25]{logo.png}
rule[0.6ex]{textwidth}{0.3mm}
end{center}
textit{Source :} href{google.com}{https://google.com}
end{figure}
%Table :
begin{table}
caption{Table-Example.}
begin{center}
rule[0.6ex]{textwidth}{0.3mm}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
rule[0.6ex]{textwidth}{0.3mm}
end{center}
textit{Source :} href{google.com}{https://google.com}
label{tab:my_label}
end{table}
end{document}


The result :



enter image description here







floats captions






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked May 28 '18 at 8:46









Red OneRed One

32619




32619





bumped to the homepage by Community 15 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 15 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    Do not use the center environment within a figure: it adds unwanted vertical spacing. Use centering instead.

    – Bernard
    May 28 '18 at 8:48













  • But if i use centering I will have my textit{Source :} href{google.com}{https://google.com} at the center as well.

    – Red One
    May 28 '18 at 8:54











  • For that you can make a group. Captions are centred by default – how do you manage it?

    – Bernard
    May 28 '18 at 9:00











  • Well i just tried something like this caption*{textit{Source} : href{google.com}{https://google.com}} with centering and it's not bad at all, so now I have to figure out how to add 2 lines without adding rule[0.6ex]{textwidth}{0.3mm} everytime.

    – Red One
    May 28 '18 at 9:04






  • 1





    You should take a look at the documentation of the float package: it defines a ruled float style. You might define a ruledfigure and a ruledtable environments.

    – Bernard
    May 28 '18 at 10:02














  • 1





    Do not use the center environment within a figure: it adds unwanted vertical spacing. Use centering instead.

    – Bernard
    May 28 '18 at 8:48













  • But if i use centering I will have my textit{Source :} href{google.com}{https://google.com} at the center as well.

    – Red One
    May 28 '18 at 8:54











  • For that you can make a group. Captions are centred by default – how do you manage it?

    – Bernard
    May 28 '18 at 9:00











  • Well i just tried something like this caption*{textit{Source} : href{google.com}{https://google.com}} with centering and it's not bad at all, so now I have to figure out how to add 2 lines without adding rule[0.6ex]{textwidth}{0.3mm} everytime.

    – Red One
    May 28 '18 at 9:04






  • 1





    You should take a look at the documentation of the float package: it defines a ruled float style. You might define a ruledfigure and a ruledtable environments.

    – Bernard
    May 28 '18 at 10:02








1




1





Do not use the center environment within a figure: it adds unwanted vertical spacing. Use centering instead.

– Bernard
May 28 '18 at 8:48







Do not use the center environment within a figure: it adds unwanted vertical spacing. Use centering instead.

– Bernard
May 28 '18 at 8:48















But if i use centering I will have my textit{Source :} href{google.com}{https://google.com} at the center as well.

– Red One
May 28 '18 at 8:54





But if i use centering I will have my textit{Source :} href{google.com}{https://google.com} at the center as well.

– Red One
May 28 '18 at 8:54













For that you can make a group. Captions are centred by default – how do you manage it?

– Bernard
May 28 '18 at 9:00





For that you can make a group. Captions are centred by default – how do you manage it?

– Bernard
May 28 '18 at 9:00













Well i just tried something like this caption*{textit{Source} : href{google.com}{https://google.com}} with centering and it's not bad at all, so now I have to figure out how to add 2 lines without adding rule[0.6ex]{textwidth}{0.3mm} everytime.

– Red One
May 28 '18 at 9:04





Well i just tried something like this caption*{textit{Source} : href{google.com}{https://google.com}} with centering and it's not bad at all, so now I have to figure out how to add 2 lines without adding rule[0.6ex]{textwidth}{0.3mm} everytime.

– Red One
May 28 '18 at 9:04




1




1





You should take a look at the documentation of the float package: it defines a ruled float style. You might define a ruledfigure and a ruledtable environments.

– Bernard
May 28 '18 at 10:02





You should take a look at the documentation of the float package: it defines a ruled float style. You might define a ruledfigure and a ruledtable environments.

– Bernard
May 28 '18 at 10:02










1 Answer
1






active

oldest

votes


















0














With newenvironment{name}{begin}{end}, it can be done:



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}
begin{document}
begin{tablewithrule}{Table Example}{url{www.google.com}}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
end{tablewithrule}
end{document}


However, it is not possible to have an argument in the end-part of the order. You've therefore to add it in the begin-part (if you want to have this automatic...).



The distance to the rules can be changed by vspace{}, where you can also enter a negative value, e.g. vspace{-0.4cm}



Edit: you could also work with renewenvironment instead of newenvironment. I however prefer not to meddle with the basic definitions but do new commands based on existing ones.






share|improve this answer
























  • Hello, sorry for the late answer. I tried it but it didn't work I don't get the lines between my figure/table when I add newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}

    – Red One
    May 28 '18 at 22:56











  • Working fine with me. You've to change the begin{table} to begin{tablewithrule}, same with end{table}. If you don't want that, you've to use renewenvironment

    – Shade
    May 29 '18 at 7:44












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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f433763%2fadd-two-horizontal-lines-between-a-figure-and-a-table%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









0














With newenvironment{name}{begin}{end}, it can be done:



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}
begin{document}
begin{tablewithrule}{Table Example}{url{www.google.com}}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
end{tablewithrule}
end{document}


However, it is not possible to have an argument in the end-part of the order. You've therefore to add it in the begin-part (if you want to have this automatic...).



The distance to the rules can be changed by vspace{}, where you can also enter a negative value, e.g. vspace{-0.4cm}



Edit: you could also work with renewenvironment instead of newenvironment. I however prefer not to meddle with the basic definitions but do new commands based on existing ones.






share|improve this answer
























  • Hello, sorry for the late answer. I tried it but it didn't work I don't get the lines between my figure/table when I add newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}

    – Red One
    May 28 '18 at 22:56











  • Working fine with me. You've to change the begin{table} to begin{tablewithrule}, same with end{table}. If you don't want that, you've to use renewenvironment

    – Shade
    May 29 '18 at 7:44
















0














With newenvironment{name}{begin}{end}, it can be done:



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}
begin{document}
begin{tablewithrule}{Table Example}{url{www.google.com}}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
end{tablewithrule}
end{document}


However, it is not possible to have an argument in the end-part of the order. You've therefore to add it in the begin-part (if you want to have this automatic...).



The distance to the rules can be changed by vspace{}, where you can also enter a negative value, e.g. vspace{-0.4cm}



Edit: you could also work with renewenvironment instead of newenvironment. I however prefer not to meddle with the basic definitions but do new commands based on existing ones.






share|improve this answer
























  • Hello, sorry for the late answer. I tried it but it didn't work I don't get the lines between my figure/table when I add newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}

    – Red One
    May 28 '18 at 22:56











  • Working fine with me. You've to change the begin{table} to begin{tablewithrule}, same with end{table}. If you don't want that, you've to use renewenvironment

    – Shade
    May 29 '18 at 7:44














0












0








0







With newenvironment{name}{begin}{end}, it can be done:



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}
begin{document}
begin{tablewithrule}{Table Example}{url{www.google.com}}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
end{tablewithrule}
end{document}


However, it is not possible to have an argument in the end-part of the order. You've therefore to add it in the begin-part (if you want to have this automatic...).



The distance to the rules can be changed by vspace{}, where you can also enter a negative value, e.g. vspace{-0.4cm}



Edit: you could also work with renewenvironment instead of newenvironment. I however prefer not to meddle with the basic definitions but do new commands based on existing ones.






share|improve this answer













With newenvironment{name}{begin}{end}, it can be done:



documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{hyperref}
usepackage{caption}
captionsetup{labelfont=bf,textfont=bf,justification=raggedright,singlelinecheck=false,format=hang}
newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}
begin{document}
begin{tablewithrule}{Table Example}{url{www.google.com}}
begin{tabular}{c|c}
hline
A & B \
C & D \
hline
end{tabular}
end{tablewithrule}
end{document}


However, it is not possible to have an argument in the end-part of the order. You've therefore to add it in the begin-part (if you want to have this automatic...).



The distance to the rules can be changed by vspace{}, where you can also enter a negative value, e.g. vspace{-0.4cm}



Edit: you could also work with renewenvironment instead of newenvironment. I however prefer not to meddle with the basic definitions but do new commands based on existing ones.







share|improve this answer












share|improve this answer



share|improve this answer










answered May 28 '18 at 10:05









ShadeShade

30319




30319













  • Hello, sorry for the late answer. I tried it but it didn't work I don't get the lines between my figure/table when I add newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}

    – Red One
    May 28 '18 at 22:56











  • Working fine with me. You've to change the begin{table} to begin{tablewithrule}, same with end{table}. If you don't want that, you've to use renewenvironment

    – Shade
    May 29 '18 at 7:44



















  • Hello, sorry for the late answer. I tried it but it didn't work I don't get the lines between my figure/table when I add newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}

    – Red One
    May 28 '18 at 22:56











  • Working fine with me. You've to change the begin{table} to begin{tablewithrule}, same with end{table}. If you don't want that, you've to use renewenvironment

    – Shade
    May 29 '18 at 7:44

















Hello, sorry for the late answer. I tried it but it didn't work I don't get the lines between my figure/table when I add newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}

– Red One
May 28 '18 at 22:56





Hello, sorry for the late answer. I tried it but it didn't work I don't get the lines between my figure/table when I add newenvironment{tablewithrule}[2]{begin{table} caption{#1} centering rule[0.6ex]{textwidth}{0.3mm} caption*{textit{Source}: #2} }{vspace{1mm}rule[0.6ex]{textwidth}{0.3mm} end{table}}

– Red One
May 28 '18 at 22:56













Working fine with me. You've to change the begin{table} to begin{tablewithrule}, same with end{table}. If you don't want that, you've to use renewenvironment

– Shade
May 29 '18 at 7:44





Working fine with me. You've to change the begin{table} to begin{tablewithrule}, same with end{table}. If you don't want that, you've to use renewenvironment

– Shade
May 29 '18 at 7:44


















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f433763%2fadd-two-horizontal-lines-between-a-figure-and-a-table%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...