How to include a list of symbols?












0















enter image description here



Is there a special way, a standard way to include a list of symbols in a LaTeX document:



documentclass{article}
usepackage{amsmath}
usepackage{algorithm}
usepackage{algpseudocode}


I have a few possibly ambiguous symbols, like the odot which would benefit from a definition.



I mean something like you might have at the start of a linear algebra book: $odot$ – Hadamard product, ...










share|improve this question

























  • I mean something like you might have at the start of a linear algebra book: $ odot $ : Hadamard product, ...

    – Machupicchu
    Feb 16 at 16:09











  • like in the pic i just added, a list of symbols

    – Machupicchu
    Feb 16 at 16:12













  • Hmm, what does this relate to pseudocodes?

    – JouleV
    Feb 16 at 16:13






  • 1





    To make that you only have to make a chapter*{List of Symbols} and a table in it.

    – JouleV
    Feb 16 at 16:13






  • 3





    This has nothing to do with the algorithms etc. You may use glossaries or nomencl to generate a list of symbols.

    – Christian Hupfer
    Feb 16 at 16:21
















0















enter image description here



Is there a special way, a standard way to include a list of symbols in a LaTeX document:



documentclass{article}
usepackage{amsmath}
usepackage{algorithm}
usepackage{algpseudocode}


I have a few possibly ambiguous symbols, like the odot which would benefit from a definition.



I mean something like you might have at the start of a linear algebra book: $odot$ – Hadamard product, ...










share|improve this question

























  • I mean something like you might have at the start of a linear algebra book: $ odot $ : Hadamard product, ...

    – Machupicchu
    Feb 16 at 16:09











  • like in the pic i just added, a list of symbols

    – Machupicchu
    Feb 16 at 16:12













  • Hmm, what does this relate to pseudocodes?

    – JouleV
    Feb 16 at 16:13






  • 1





    To make that you only have to make a chapter*{List of Symbols} and a table in it.

    – JouleV
    Feb 16 at 16:13






  • 3





    This has nothing to do with the algorithms etc. You may use glossaries or nomencl to generate a list of symbols.

    – Christian Hupfer
    Feb 16 at 16:21














0












0








0








enter image description here



Is there a special way, a standard way to include a list of symbols in a LaTeX document:



documentclass{article}
usepackage{amsmath}
usepackage{algorithm}
usepackage{algpseudocode}


I have a few possibly ambiguous symbols, like the odot which would benefit from a definition.



I mean something like you might have at the start of a linear algebra book: $odot$ – Hadamard product, ...










share|improve this question
















enter image description here



Is there a special way, a standard way to include a list of symbols in a LaTeX document:



documentclass{article}
usepackage{amsmath}
usepackage{algorithm}
usepackage{algpseudocode}


I have a few possibly ambiguous symbols, like the odot which would benefit from a definition.



I mean something like you might have at the start of a linear algebra book: $odot$ – Hadamard product, ...







symbols






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 16 at 16:26









JouleV

4,0801938




4,0801938










asked Feb 16 at 15:55









MachupicchuMachupicchu

205




205













  • I mean something like you might have at the start of a linear algebra book: $ odot $ : Hadamard product, ...

    – Machupicchu
    Feb 16 at 16:09











  • like in the pic i just added, a list of symbols

    – Machupicchu
    Feb 16 at 16:12













  • Hmm, what does this relate to pseudocodes?

    – JouleV
    Feb 16 at 16:13






  • 1





    To make that you only have to make a chapter*{List of Symbols} and a table in it.

    – JouleV
    Feb 16 at 16:13






  • 3





    This has nothing to do with the algorithms etc. You may use glossaries or nomencl to generate a list of symbols.

    – Christian Hupfer
    Feb 16 at 16:21



















  • I mean something like you might have at the start of a linear algebra book: $ odot $ : Hadamard product, ...

    – Machupicchu
    Feb 16 at 16:09











  • like in the pic i just added, a list of symbols

    – Machupicchu
    Feb 16 at 16:12













  • Hmm, what does this relate to pseudocodes?

    – JouleV
    Feb 16 at 16:13






  • 1





    To make that you only have to make a chapter*{List of Symbols} and a table in it.

    – JouleV
    Feb 16 at 16:13






  • 3





    This has nothing to do with the algorithms etc. You may use glossaries or nomencl to generate a list of symbols.

    – Christian Hupfer
    Feb 16 at 16:21

















I mean something like you might have at the start of a linear algebra book: $ odot $ : Hadamard product, ...

– Machupicchu
Feb 16 at 16:09





I mean something like you might have at the start of a linear algebra book: $ odot $ : Hadamard product, ...

– Machupicchu
Feb 16 at 16:09













like in the pic i just added, a list of symbols

– Machupicchu
Feb 16 at 16:12







like in the pic i just added, a list of symbols

– Machupicchu
Feb 16 at 16:12















Hmm, what does this relate to pseudocodes?

– JouleV
Feb 16 at 16:13





Hmm, what does this relate to pseudocodes?

– JouleV
Feb 16 at 16:13




1




1





To make that you only have to make a chapter*{List of Symbols} and a table in it.

– JouleV
Feb 16 at 16:13





To make that you only have to make a chapter*{List of Symbols} and a table in it.

– JouleV
Feb 16 at 16:13




3




3





This has nothing to do with the algorithms etc. You may use glossaries or nomencl to generate a list of symbols.

– Christian Hupfer
Feb 16 at 16:21





This has nothing to do with the algorithms etc. You may use glossaries or nomencl to generate a list of symbols.

– Christian Hupfer
Feb 16 at 16:21










1 Answer
1






active

oldest

votes


















1














A quick, simple and (very) dirty way.



documentclass{book}
usepackage{lipsum}
begin{document}
tableofcontents
chapter*{List of Symbols}
begin{tabular}{ll}
$+$ & Addition Operator\
$-$ & Subtraction Operator\
$times$ & Multiplication Operator\
$sqrt{x}$ & Square Root of $x$\
$odot$ & Foo Bar\
$Leftrightarrow$ & Bar Foo
end{tabular}
chapter{Check chapter}
lipsum[1]
chapter{Check chapter}
section{Check section}
end{document}


enter image description here






share|improve this answer



















  • 2





    This is very error-prone, in my point of view

    – Christian Hupfer
    Feb 16 at 16:26











  • @ChristianHupfer Yes, this is not a standard one, and I said it is very dirty.

    – JouleV
    Feb 16 at 16:27











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%2f475205%2fhow-to-include-a-list-of-symbols%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









1














A quick, simple and (very) dirty way.



documentclass{book}
usepackage{lipsum}
begin{document}
tableofcontents
chapter*{List of Symbols}
begin{tabular}{ll}
$+$ & Addition Operator\
$-$ & Subtraction Operator\
$times$ & Multiplication Operator\
$sqrt{x}$ & Square Root of $x$\
$odot$ & Foo Bar\
$Leftrightarrow$ & Bar Foo
end{tabular}
chapter{Check chapter}
lipsum[1]
chapter{Check chapter}
section{Check section}
end{document}


enter image description here






share|improve this answer



















  • 2





    This is very error-prone, in my point of view

    – Christian Hupfer
    Feb 16 at 16:26











  • @ChristianHupfer Yes, this is not a standard one, and I said it is very dirty.

    – JouleV
    Feb 16 at 16:27
















1














A quick, simple and (very) dirty way.



documentclass{book}
usepackage{lipsum}
begin{document}
tableofcontents
chapter*{List of Symbols}
begin{tabular}{ll}
$+$ & Addition Operator\
$-$ & Subtraction Operator\
$times$ & Multiplication Operator\
$sqrt{x}$ & Square Root of $x$\
$odot$ & Foo Bar\
$Leftrightarrow$ & Bar Foo
end{tabular}
chapter{Check chapter}
lipsum[1]
chapter{Check chapter}
section{Check section}
end{document}


enter image description here






share|improve this answer



















  • 2





    This is very error-prone, in my point of view

    – Christian Hupfer
    Feb 16 at 16:26











  • @ChristianHupfer Yes, this is not a standard one, and I said it is very dirty.

    – JouleV
    Feb 16 at 16:27














1












1








1







A quick, simple and (very) dirty way.



documentclass{book}
usepackage{lipsum}
begin{document}
tableofcontents
chapter*{List of Symbols}
begin{tabular}{ll}
$+$ & Addition Operator\
$-$ & Subtraction Operator\
$times$ & Multiplication Operator\
$sqrt{x}$ & Square Root of $x$\
$odot$ & Foo Bar\
$Leftrightarrow$ & Bar Foo
end{tabular}
chapter{Check chapter}
lipsum[1]
chapter{Check chapter}
section{Check section}
end{document}


enter image description here






share|improve this answer













A quick, simple and (very) dirty way.



documentclass{book}
usepackage{lipsum}
begin{document}
tableofcontents
chapter*{List of Symbols}
begin{tabular}{ll}
$+$ & Addition Operator\
$-$ & Subtraction Operator\
$times$ & Multiplication Operator\
$sqrt{x}$ & Square Root of $x$\
$odot$ & Foo Bar\
$Leftrightarrow$ & Bar Foo
end{tabular}
chapter{Check chapter}
lipsum[1]
chapter{Check chapter}
section{Check section}
end{document}


enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










answered Feb 16 at 16:24









JouleVJouleV

4,0801938




4,0801938








  • 2





    This is very error-prone, in my point of view

    – Christian Hupfer
    Feb 16 at 16:26











  • @ChristianHupfer Yes, this is not a standard one, and I said it is very dirty.

    – JouleV
    Feb 16 at 16:27














  • 2





    This is very error-prone, in my point of view

    – Christian Hupfer
    Feb 16 at 16:26











  • @ChristianHupfer Yes, this is not a standard one, and I said it is very dirty.

    – JouleV
    Feb 16 at 16:27








2




2





This is very error-prone, in my point of view

– Christian Hupfer
Feb 16 at 16:26





This is very error-prone, in my point of view

– Christian Hupfer
Feb 16 at 16:26













@ChristianHupfer Yes, this is not a standard one, and I said it is very dirty.

– JouleV
Feb 16 at 16:27





@ChristianHupfer Yes, this is not a standard one, and I said it is very dirty.

– JouleV
Feb 16 at 16:27


















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%2f475205%2fhow-to-include-a-list-of-symbols%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

How to send String Array data to Server using php in android

Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

Is anime1.com a legal site for watching anime?