Problem with table (place in the center)
usepackage{lineno,hyperref}
usepackage{amsfonts,amssymb}
usepackage{mathtools}
usepackage{multirow}%
modulolinenumbers[5]
begin{document}
begin{table}[h]
begin{center}
begin{tabular}
[c]{|c|l|c|c|c|c|}hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & multirow{1}{*}{Problem}\ hline
multirow{3}{*}{2} & Function & 1 &1
\
& Function & 1 & 1
\
& Function &1 & 1
\hline
multirow{3}{*}{5} & Function &1 &1
\
& Function & 1 & 1
\
& Function & 1 & 1
\hline
multirow{3}{*}{10} & Function & 1 & 1
\
& Function & 1 &1
\
& Function & 1 & 1
\hline
multirow{3}{*}{20} & Function & 1 & 1
\
& Function & 1 & 1
\
& Function & 1 & 1
\hline
end{tabular}
end{center}
end{table}
end{document}
I have got a problem. The column named "Problem" is lower than columns "Column 0" and "Column 1". How can I place it in the center of the box? I guess this happens because "subcolumn 1 and 2" are placed lower and the next column follows them.
Here is picture
tables
add a comment |
usepackage{lineno,hyperref}
usepackage{amsfonts,amssymb}
usepackage{mathtools}
usepackage{multirow}%
modulolinenumbers[5]
begin{document}
begin{table}[h]
begin{center}
begin{tabular}
[c]{|c|l|c|c|c|c|}hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & multirow{1}{*}{Problem}\ hline
multirow{3}{*}{2} & Function & 1 &1
\
& Function & 1 & 1
\
& Function &1 & 1
\hline
multirow{3}{*}{5} & Function &1 &1
\
& Function & 1 & 1
\
& Function & 1 & 1
\hline
multirow{3}{*}{10} & Function & 1 & 1
\
& Function & 1 &1
\
& Function & 1 & 1
\hline
multirow{3}{*}{20} & Function & 1 & 1
\
& Function & 1 & 1
\
& Function & 1 & 1
\hline
end{tabular}
end{center}
end{table}
end{document}
I have got a problem. The column named "Problem" is lower than columns "Column 0" and "Column 1". How can I place it in the center of the box? I guess this happens because "subcolumn 1 and 2" are placed lower and the next column follows them.
Here is picture
tables
Could you please add a fully compilable MWE?
– Raaja
Mar 19 at 13:59
@Raaja I added all packages I used if you meant that. I am sorry I am new to latex
– Markoff Chainz
Mar 19 at 14:05
Please also add your document class :)
– Raaja
Mar 19 at 14:06
@Raaja Thanks, my problem is already solved :)
– Markoff Chainz
Mar 19 at 14:09
If your problem is solved consider accepting the solution by clicking the tick-mark on the left-top screen near the vote button.
– Raaja
Mar 19 at 14:10
add a comment |
usepackage{lineno,hyperref}
usepackage{amsfonts,amssymb}
usepackage{mathtools}
usepackage{multirow}%
modulolinenumbers[5]
begin{document}
begin{table}[h]
begin{center}
begin{tabular}
[c]{|c|l|c|c|c|c|}hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & multirow{1}{*}{Problem}\ hline
multirow{3}{*}{2} & Function & 1 &1
\
& Function & 1 & 1
\
& Function &1 & 1
\hline
multirow{3}{*}{5} & Function &1 &1
\
& Function & 1 & 1
\
& Function & 1 & 1
\hline
multirow{3}{*}{10} & Function & 1 & 1
\
& Function & 1 &1
\
& Function & 1 & 1
\hline
multirow{3}{*}{20} & Function & 1 & 1
\
& Function & 1 & 1
\
& Function & 1 & 1
\hline
end{tabular}
end{center}
end{table}
end{document}
I have got a problem. The column named "Problem" is lower than columns "Column 0" and "Column 1". How can I place it in the center of the box? I guess this happens because "subcolumn 1 and 2" are placed lower and the next column follows them.
Here is picture
tables
usepackage{lineno,hyperref}
usepackage{amsfonts,amssymb}
usepackage{mathtools}
usepackage{multirow}%
modulolinenumbers[5]
begin{document}
begin{table}[h]
begin{center}
begin{tabular}
[c]{|c|l|c|c|c|c|}hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & multirow{1}{*}{Problem}\ hline
multirow{3}{*}{2} & Function & 1 &1
\
& Function & 1 & 1
\
& Function &1 & 1
\hline
multirow{3}{*}{5} & Function &1 &1
\
& Function & 1 & 1
\
& Function & 1 & 1
\hline
multirow{3}{*}{10} & Function & 1 & 1
\
& Function & 1 &1
\
& Function & 1 & 1
\hline
multirow{3}{*}{20} & Function & 1 & 1
\
& Function & 1 & 1
\
& Function & 1 & 1
\hline
end{tabular}
end{center}
end{table}
end{document}
I have got a problem. The column named "Problem" is lower than columns "Column 0" and "Column 1". How can I place it in the center of the box? I guess this happens because "subcolumn 1 and 2" are placed lower and the next column follows them.
Here is picture
tables
tables
edited Mar 19 at 14:04
Markoff Chainz
asked Mar 19 at 13:55
Markoff ChainzMarkoff Chainz
1134
1134
Could you please add a fully compilable MWE?
– Raaja
Mar 19 at 13:59
@Raaja I added all packages I used if you meant that. I am sorry I am new to latex
– Markoff Chainz
Mar 19 at 14:05
Please also add your document class :)
– Raaja
Mar 19 at 14:06
@Raaja Thanks, my problem is already solved :)
– Markoff Chainz
Mar 19 at 14:09
If your problem is solved consider accepting the solution by clicking the tick-mark on the left-top screen near the vote button.
– Raaja
Mar 19 at 14:10
add a comment |
Could you please add a fully compilable MWE?
– Raaja
Mar 19 at 13:59
@Raaja I added all packages I used if you meant that. I am sorry I am new to latex
– Markoff Chainz
Mar 19 at 14:05
Please also add your document class :)
– Raaja
Mar 19 at 14:06
@Raaja Thanks, my problem is already solved :)
– Markoff Chainz
Mar 19 at 14:09
If your problem is solved consider accepting the solution by clicking the tick-mark on the left-top screen near the vote button.
– Raaja
Mar 19 at 14:10
Could you please add a fully compilable MWE?
– Raaja
Mar 19 at 13:59
Could you please add a fully compilable MWE?
– Raaja
Mar 19 at 13:59
@Raaja I added all packages I used if you meant that. I am sorry I am new to latex
– Markoff Chainz
Mar 19 at 14:05
@Raaja I added all packages I used if you meant that. I am sorry I am new to latex
– Markoff Chainz
Mar 19 at 14:05
Please also add your document class :)
– Raaja
Mar 19 at 14:06
Please also add your document class :)
– Raaja
Mar 19 at 14:06
@Raaja Thanks, my problem is already solved :)
– Markoff Chainz
Mar 19 at 14:09
@Raaja Thanks, my problem is already solved :)
– Markoff Chainz
Mar 19 at 14:09
If your problem is solved consider accepting the solution by clicking the tick-mark on the left-top screen near the vote button.
– Raaja
Mar 19 at 14:10
If your problem is solved consider accepting the solution by clicking the tick-mark on the left-top screen near the vote button.
– Raaja
Mar 19 at 14:10
add a comment |
1 Answer
1
active
oldest
votes
You have put the "Problem" on the wrong row. I see that after carefully examining the first two rows. Also, in the "main" rows, you forgot a &, therefore there is no vertical line at the end.
Solution:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c|l|c|c|c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 &1 &\
& Function & 1 & 1 &\
& Function &1 & 1 &\hline
multirow{3}{*}{5} & Function &1 &1 &\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
multirow{3}{*}{10} & Function & 1 & 1&\
& Function & 1 &1&\
& Function & 1 & 1&\hline
multirow{3}{*}{20} & Function & 1 & 1&\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
end{tabular}
end{center}
end{table}
end{document}

The above code with better alignments:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c| l| c| c| c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} & multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem} \ cline{3-4}
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{5} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{10} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{20} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
end{tabular}
end{center}
end{table}
end{document}
Thanks! It places it in the center, but I can see that upper half of the box with "problem" misses vertical line. How can I fix that?
– Markoff Chainz
Mar 19 at 14:01
@MarkoffChainz I made some changes to my answer. Is it ok now?
– JouleV
Mar 19 at 14:08
Yes, it is absolutely fine now! Thanks!
– Markoff Chainz
Mar 19 at 14:08
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%2f480276%2fproblem-with-table-place-in-the-center%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
You have put the "Problem" on the wrong row. I see that after carefully examining the first two rows. Also, in the "main" rows, you forgot a &, therefore there is no vertical line at the end.
Solution:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c|l|c|c|c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 &1 &\
& Function & 1 & 1 &\
& Function &1 & 1 &\hline
multirow{3}{*}{5} & Function &1 &1 &\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
multirow{3}{*}{10} & Function & 1 & 1&\
& Function & 1 &1&\
& Function & 1 & 1&\hline
multirow{3}{*}{20} & Function & 1 & 1&\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
end{tabular}
end{center}
end{table}
end{document}

The above code with better alignments:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c| l| c| c| c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} & multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem} \ cline{3-4}
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{5} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{10} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{20} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
end{tabular}
end{center}
end{table}
end{document}
Thanks! It places it in the center, but I can see that upper half of the box with "problem" misses vertical line. How can I fix that?
– Markoff Chainz
Mar 19 at 14:01
@MarkoffChainz I made some changes to my answer. Is it ok now?
– JouleV
Mar 19 at 14:08
Yes, it is absolutely fine now! Thanks!
– Markoff Chainz
Mar 19 at 14:08
add a comment |
You have put the "Problem" on the wrong row. I see that after carefully examining the first two rows. Also, in the "main" rows, you forgot a &, therefore there is no vertical line at the end.
Solution:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c|l|c|c|c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 &1 &\
& Function & 1 & 1 &\
& Function &1 & 1 &\hline
multirow{3}{*}{5} & Function &1 &1 &\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
multirow{3}{*}{10} & Function & 1 & 1&\
& Function & 1 &1&\
& Function & 1 & 1&\hline
multirow{3}{*}{20} & Function & 1 & 1&\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
end{tabular}
end{center}
end{table}
end{document}

The above code with better alignments:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c| l| c| c| c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} & multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem} \ cline{3-4}
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{5} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{10} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{20} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
end{tabular}
end{center}
end{table}
end{document}
Thanks! It places it in the center, but I can see that upper half of the box with "problem" misses vertical line. How can I fix that?
– Markoff Chainz
Mar 19 at 14:01
@MarkoffChainz I made some changes to my answer. Is it ok now?
– JouleV
Mar 19 at 14:08
Yes, it is absolutely fine now! Thanks!
– Markoff Chainz
Mar 19 at 14:08
add a comment |
You have put the "Problem" on the wrong row. I see that after carefully examining the first two rows. Also, in the "main" rows, you forgot a &, therefore there is no vertical line at the end.
Solution:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c|l|c|c|c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 &1 &\
& Function & 1 & 1 &\
& Function &1 & 1 &\hline
multirow{3}{*}{5} & Function &1 &1 &\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
multirow{3}{*}{10} & Function & 1 & 1&\
& Function & 1 &1&\
& Function & 1 & 1&\hline
multirow{3}{*}{20} & Function & 1 & 1&\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
end{tabular}
end{center}
end{table}
end{document}

The above code with better alignments:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c| l| c| c| c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} & multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem} \ cline{3-4}
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{5} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{10} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{20} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
end{tabular}
end{center}
end{table}
end{document}
You have put the "Problem" on the wrong row. I see that after carefully examining the first two rows. Also, in the "main" rows, you forgot a &, therefore there is no vertical line at the end.
Solution:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c|l|c|c|c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} &
multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem}\ cline{3-4 }
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 &1 &\
& Function & 1 & 1 &\
& Function &1 & 1 &\hline
multirow{3}{*}{5} & Function &1 &1 &\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
multirow{3}{*}{10} & Function & 1 & 1&\
& Function & 1 &1&\
& Function & 1 & 1&\hline
multirow{3}{*}{20} & Function & 1 & 1&\
& Function & 1 & 1&\
& Function & 1 & 1&\hline
end{tabular}
end{center}
end{table}
end{document}

The above code with better alignments:
documentclass{article}
usepackage{multirow}
begin{document}
begin{table}[h]
begin{center}
begin{tabular}[c]{|c| l| c| c| c|}
hline
multirow{2}{*}{A} & multirow{2}{*}{Column 1} & multicolumn{2}{c|}{Column 2} & multirow{2}{*}{Problem} \ cline{3-4}
& & Subcolum 1 & Subcolumn 2 & \ hline
multirow{3}{*}{2} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{5} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{10} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
multirow{3}{*}{20} & Function & 1 & 1 & \
& Function & 1 & 1 & \
& Function & 1 & 1 & \hline
end{tabular}
end{center}
end{table}
end{document}
edited Mar 19 at 14:16
answered Mar 19 at 13:59
JouleVJouleV
8,90222155
8,90222155
Thanks! It places it in the center, but I can see that upper half of the box with "problem" misses vertical line. How can I fix that?
– Markoff Chainz
Mar 19 at 14:01
@MarkoffChainz I made some changes to my answer. Is it ok now?
– JouleV
Mar 19 at 14:08
Yes, it is absolutely fine now! Thanks!
– Markoff Chainz
Mar 19 at 14:08
add a comment |
Thanks! It places it in the center, but I can see that upper half of the box with "problem" misses vertical line. How can I fix that?
– Markoff Chainz
Mar 19 at 14:01
@MarkoffChainz I made some changes to my answer. Is it ok now?
– JouleV
Mar 19 at 14:08
Yes, it is absolutely fine now! Thanks!
– Markoff Chainz
Mar 19 at 14:08
Thanks! It places it in the center, but I can see that upper half of the box with "problem" misses vertical line. How can I fix that?
– Markoff Chainz
Mar 19 at 14:01
Thanks! It places it in the center, but I can see that upper half of the box with "problem" misses vertical line. How can I fix that?
– Markoff Chainz
Mar 19 at 14:01
@MarkoffChainz I made some changes to my answer. Is it ok now?
– JouleV
Mar 19 at 14:08
@MarkoffChainz I made some changes to my answer. Is it ok now?
– JouleV
Mar 19 at 14:08
Yes, it is absolutely fine now! Thanks!
– Markoff Chainz
Mar 19 at 14:08
Yes, it is absolutely fine now! Thanks!
– Markoff Chainz
Mar 19 at 14:08
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%2f480276%2fproblem-with-table-place-in-the-center%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
Could you please add a fully compilable MWE?
– Raaja
Mar 19 at 13:59
@Raaja I added all packages I used if you meant that. I am sorry I am new to latex
– Markoff Chainz
Mar 19 at 14:05
Please also add your document class :)
– Raaja
Mar 19 at 14:06
@Raaja Thanks, my problem is already solved :)
– Markoff Chainz
Mar 19 at 14:09
If your problem is solved consider accepting the solution by clicking the tick-mark on the left-top screen near the vote button.
– Raaja
Mar 19 at 14:10