How to include a newcommand in maketitle
This is my first time using LaTeX and I really need help. I am making my College Seminar report.
I am unable to make the newcommand namesig appear on the title page.

Here is the .tex code
documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
maketitle
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{document}
I know that there are many previous posts quite similar to this, but I am unable combine to the source codes properly.
Also please suggest me, where can I find source codes particular to my requirement i.e., a documentation or text book where I can find the source codes with a little explanation.
titles signatures
add a comment |
This is my first time using LaTeX and I really need help. I am making my College Seminar report.
I am unable to make the newcommand namesig appear on the title page.

Here is the .tex code
documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
maketitle
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{document}
I know that there are many previous posts quite similar to this, but I am unable combine to the source codes properly.
Also please suggest me, where can I find source codes particular to my requirement i.e., a documentation or text book where I can find the source codes with a little explanation.
titles signatures
add a comment |
This is my first time using LaTeX and I really need help. I am making my College Seminar report.
I am unable to make the newcommand namesig appear on the title page.

Here is the .tex code
documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
maketitle
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{document}
I know that there are many previous posts quite similar to this, but I am unable combine to the source codes properly.
Also please suggest me, where can I find source codes particular to my requirement i.e., a documentation or text book where I can find the source codes with a little explanation.
titles signatures
This is my first time using LaTeX and I really need help. I am making my College Seminar report.
I am unable to make the newcommand namesig appear on the title page.

Here is the .tex code
documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
maketitle
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{document}
I know that there are many previous posts quite similar to this, but I am unable combine to the source codes properly.
Also please suggest me, where can I find source codes particular to my requirement i.e., a documentation or text book where I can find the source codes with a little explanation.
titles signatures
titles signatures
edited Mar 10 at 10:48
JouleV
6,44121750
6,44121750
asked Mar 10 at 10:39
Md Arshad AliMd Arshad Ali
82
82
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can just redefine maketitle to do what you need:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
makeatletter
renewcommand{maketitle}{
begin{center}
pagestyle{empty}
phantom{.} %necessary to add space on top before the title
vspace{3cm}
{Huge bf @titlepar}
vspace{2.5cm}
{LARGE @author}\[1cm]
{Large@date}
vspace{4.5cm}
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
%if you want something in the bottom of the page just use /vfill before that.
end{center}
}makeatother
begin{document}
maketitle
end{document}
Do not changemaketitle. This case is better suited with environmenttitlepage.
– Kurt
Mar 10 at 11:16
@Kurt could you please elaborate?
– Superuser27
Mar 10 at 11:16
Thanks for the quick answer. Can you suggest me an easy to use online resource or text book to use LaTex? How did you start learning?
– Md Arshad Ali
Mar 10 at 11:17
1
titlepagewas build to allow to create a title page on your own.maketitleis used to show the usual title depending on the used class. If you change the ususal title(page) better usetitlepage...
– Kurt
Mar 10 at 11:21
add a comment |
With the help of the titlepage enironment you can achieve something like this. You can of course adjust font sizes, alignments and distances to your needs:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,vmargin=4.5cm]{geometry}
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
begin{titlepage}
centering
vspace*{2cm}
LARGE The uIP Stack
large A Small Memory Footprint TCP/IP Stack for Microcontrollers
vspace{2cm}
Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
vspace{1cm}
today
vspace{5cm}
namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{titlepage}
end{document}
Thank you, Leandriis. Also, can you suggest me a good textbook or document or a website where I can find basic source codes. So that next time when I ask questions they will be more thoughtful.
– Md Arshad Ali
Mar 10 at 11:28
@MdArshadAli: I an nor sure whay you mean by 'basic source code'. However, maybe you are interested in :What are good learning resources for a LaTeX beginner?
– leandriis
Mar 10 at 11:31
That was useful, thanks again.
– Md Arshad Ali
Mar 10 at 12:29
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%2f478702%2fhow-to-include-a-newcommand-in-maketitle%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can just redefine maketitle to do what you need:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
makeatletter
renewcommand{maketitle}{
begin{center}
pagestyle{empty}
phantom{.} %necessary to add space on top before the title
vspace{3cm}
{Huge bf @titlepar}
vspace{2.5cm}
{LARGE @author}\[1cm]
{Large@date}
vspace{4.5cm}
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
%if you want something in the bottom of the page just use /vfill before that.
end{center}
}makeatother
begin{document}
maketitle
end{document}
Do not changemaketitle. This case is better suited with environmenttitlepage.
– Kurt
Mar 10 at 11:16
@Kurt could you please elaborate?
– Superuser27
Mar 10 at 11:16
Thanks for the quick answer. Can you suggest me an easy to use online resource or text book to use LaTex? How did you start learning?
– Md Arshad Ali
Mar 10 at 11:17
1
titlepagewas build to allow to create a title page on your own.maketitleis used to show the usual title depending on the used class. If you change the ususal title(page) better usetitlepage...
– Kurt
Mar 10 at 11:21
add a comment |
You can just redefine maketitle to do what you need:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
makeatletter
renewcommand{maketitle}{
begin{center}
pagestyle{empty}
phantom{.} %necessary to add space on top before the title
vspace{3cm}
{Huge bf @titlepar}
vspace{2.5cm}
{LARGE @author}\[1cm]
{Large@date}
vspace{4.5cm}
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
%if you want something in the bottom of the page just use /vfill before that.
end{center}
}makeatother
begin{document}
maketitle
end{document}
Do not changemaketitle. This case is better suited with environmenttitlepage.
– Kurt
Mar 10 at 11:16
@Kurt could you please elaborate?
– Superuser27
Mar 10 at 11:16
Thanks for the quick answer. Can you suggest me an easy to use online resource or text book to use LaTex? How did you start learning?
– Md Arshad Ali
Mar 10 at 11:17
1
titlepagewas build to allow to create a title page on your own.maketitleis used to show the usual title depending on the used class. If you change the ususal title(page) better usetitlepage...
– Kurt
Mar 10 at 11:21
add a comment |
You can just redefine maketitle to do what you need:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
makeatletter
renewcommand{maketitle}{
begin{center}
pagestyle{empty}
phantom{.} %necessary to add space on top before the title
vspace{3cm}
{Huge bf @titlepar}
vspace{2.5cm}
{LARGE @author}\[1cm]
{Large@date}
vspace{4.5cm}
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
%if you want something in the bottom of the page just use /vfill before that.
end{center}
}makeatother
begin{document}
maketitle
end{document}
You can just redefine maketitle to do what you need:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,
vmargin=4.5cm]{geometry}
%%Name of the Title and subtitle
title{%
The uIP Stack \
large A Small Memory Footprint TCP/IP Stack for Microcontrollers\
}
%% First Page of the Report
author{Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}
}
%% Signature of the Guide
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
makeatletter
renewcommand{maketitle}{
begin{center}
pagestyle{empty}
phantom{.} %necessary to add space on top before the title
vspace{3cm}
{Huge bf @titlepar}
vspace{2.5cm}
{LARGE @author}\[1cm]
{Large@date}
vspace{4.5cm}
noindent namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
%if you want something in the bottom of the page just use /vfill before that.
end{center}
}makeatother
begin{document}
maketitle
end{document}
answered Mar 10 at 11:01
Superuser27Superuser27
66415
66415
Do not changemaketitle. This case is better suited with environmenttitlepage.
– Kurt
Mar 10 at 11:16
@Kurt could you please elaborate?
– Superuser27
Mar 10 at 11:16
Thanks for the quick answer. Can you suggest me an easy to use online resource or text book to use LaTex? How did you start learning?
– Md Arshad Ali
Mar 10 at 11:17
1
titlepagewas build to allow to create a title page on your own.maketitleis used to show the usual title depending on the used class. If you change the ususal title(page) better usetitlepage...
– Kurt
Mar 10 at 11:21
add a comment |
Do not changemaketitle. This case is better suited with environmenttitlepage.
– Kurt
Mar 10 at 11:16
@Kurt could you please elaborate?
– Superuser27
Mar 10 at 11:16
Thanks for the quick answer. Can you suggest me an easy to use online resource or text book to use LaTex? How did you start learning?
– Md Arshad Ali
Mar 10 at 11:17
1
titlepagewas build to allow to create a title page on your own.maketitleis used to show the usual title depending on the used class. If you change the ususal title(page) better usetitlepage...
– Kurt
Mar 10 at 11:21
Do not change
maketitle. This case is better suited with environment titlepage.– Kurt
Mar 10 at 11:16
Do not change
maketitle. This case is better suited with environment titlepage.– Kurt
Mar 10 at 11:16
@Kurt could you please elaborate?
– Superuser27
Mar 10 at 11:16
@Kurt could you please elaborate?
– Superuser27
Mar 10 at 11:16
Thanks for the quick answer. Can you suggest me an easy to use online resource or text book to use LaTex? How did you start learning?
– Md Arshad Ali
Mar 10 at 11:17
Thanks for the quick answer. Can you suggest me an easy to use online resource or text book to use LaTex? How did you start learning?
– Md Arshad Ali
Mar 10 at 11:17
1
1
titlepage was build to allow to create a title page on your own. maketitle is used to show the usual title depending on the used class. If you change the ususal title(page) better use titlepage ...– Kurt
Mar 10 at 11:21
titlepage was build to allow to create a title page on your own. maketitle is used to show the usual title depending on the used class. If you change the ususal title(page) better use titlepage ...– Kurt
Mar 10 at 11:21
add a comment |
With the help of the titlepage enironment you can achieve something like this. You can of course adjust font sizes, alignments and distances to your needs:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,vmargin=4.5cm]{geometry}
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
begin{titlepage}
centering
vspace*{2cm}
LARGE The uIP Stack
large A Small Memory Footprint TCP/IP Stack for Microcontrollers
vspace{2cm}
Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
vspace{1cm}
today
vspace{5cm}
namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{titlepage}
end{document}
Thank you, Leandriis. Also, can you suggest me a good textbook or document or a website where I can find basic source codes. So that next time when I ask questions they will be more thoughtful.
– Md Arshad Ali
Mar 10 at 11:28
@MdArshadAli: I an nor sure whay you mean by 'basic source code'. However, maybe you are interested in :What are good learning resources for a LaTeX beginner?
– leandriis
Mar 10 at 11:31
That was useful, thanks again.
– Md Arshad Ali
Mar 10 at 12:29
add a comment |
With the help of the titlepage enironment you can achieve something like this. You can of course adjust font sizes, alignments and distances to your needs:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,vmargin=4.5cm]{geometry}
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
begin{titlepage}
centering
vspace*{2cm}
LARGE The uIP Stack
large A Small Memory Footprint TCP/IP Stack for Microcontrollers
vspace{2cm}
Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
vspace{1cm}
today
vspace{5cm}
namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{titlepage}
end{document}
Thank you, Leandriis. Also, can you suggest me a good textbook or document or a website where I can find basic source codes. So that next time when I ask questions they will be more thoughtful.
– Md Arshad Ali
Mar 10 at 11:28
@MdArshadAli: I an nor sure whay you mean by 'basic source code'. However, maybe you are interested in :What are good learning resources for a LaTeX beginner?
– leandriis
Mar 10 at 11:31
That was useful, thanks again.
– Md Arshad Ali
Mar 10 at 12:29
add a comment |
With the help of the titlepage enironment you can achieve something like this. You can of course adjust font sizes, alignments and distances to your needs:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,vmargin=4.5cm]{geometry}
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
begin{titlepage}
centering
vspace*{2cm}
LARGE The uIP Stack
large A Small Memory Footprint TCP/IP Stack for Microcontrollers
vspace{2cm}
Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
vspace{1cm}
today
vspace{5cm}
namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{titlepage}
end{document}
With the help of the titlepage enironment you can achieve something like this. You can of course adjust font sizes, alignments and distances to your needs:

documentclass[a4 paper,12pt]{report}
usepackage[hmargin=4.5cm,vmargin=4.5cm]{geometry}
newcommand{namesig}[2][5cm]{%
begin{tabular}{@{}p{#1}@{}}
#2 \[2normalbaselineskip] hrule \[0pt]
{small textit{Signature}}
end{tabular}
}
begin{document}
begin{titlepage}
centering
vspace*{2cm}
LARGE The uIP Stack
large A Small Memory Footprint TCP/IP Stack for Microcontrollers
vspace{2cm}
Mohammad Arshad Ali \
{ECE-A}\
{B.E. 4/4}\
{2451-15-735-040}\
vspace{1cm}
today
vspace{5cm}
namesig{Dr. K. Usha}hfill namesig{Sudhir Dakey}
end{titlepage}
end{document}
answered Mar 10 at 11:01
leandriisleandriis
10.2k1531
10.2k1531
Thank you, Leandriis. Also, can you suggest me a good textbook or document or a website where I can find basic source codes. So that next time when I ask questions they will be more thoughtful.
– Md Arshad Ali
Mar 10 at 11:28
@MdArshadAli: I an nor sure whay you mean by 'basic source code'. However, maybe you are interested in :What are good learning resources for a LaTeX beginner?
– leandriis
Mar 10 at 11:31
That was useful, thanks again.
– Md Arshad Ali
Mar 10 at 12:29
add a comment |
Thank you, Leandriis. Also, can you suggest me a good textbook or document or a website where I can find basic source codes. So that next time when I ask questions they will be more thoughtful.
– Md Arshad Ali
Mar 10 at 11:28
@MdArshadAli: I an nor sure whay you mean by 'basic source code'. However, maybe you are interested in :What are good learning resources for a LaTeX beginner?
– leandriis
Mar 10 at 11:31
That was useful, thanks again.
– Md Arshad Ali
Mar 10 at 12:29
Thank you, Leandriis. Also, can you suggest me a good textbook or document or a website where I can find basic source codes. So that next time when I ask questions they will be more thoughtful.
– Md Arshad Ali
Mar 10 at 11:28
Thank you, Leandriis. Also, can you suggest me a good textbook or document or a website where I can find basic source codes. So that next time when I ask questions they will be more thoughtful.
– Md Arshad Ali
Mar 10 at 11:28
@MdArshadAli: I an nor sure whay you mean by 'basic source code'. However, maybe you are interested in :What are good learning resources for a LaTeX beginner?
– leandriis
Mar 10 at 11:31
@MdArshadAli: I an nor sure whay you mean by 'basic source code'. However, maybe you are interested in :What are good learning resources for a LaTeX beginner?
– leandriis
Mar 10 at 11:31
That was useful, thanks again.
– Md Arshad Ali
Mar 10 at 12:29
That was useful, thanks again.
– Md Arshad Ali
Mar 10 at 12:29
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%2f478702%2fhow-to-include-a-newcommand-in-maketitle%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