glossary line indent of second line is not the same than in the first oneSuppress the glossary expansion at...
Map of water taps to fill bottles
How exactly does Hawking radiation decrease the mass of black holes?
a sore throat vs a strep throat vs strep throat
Does a strong solution to a SDE imply lipschitz condition?
Which big number is bigger?
Is there really no use for MD5 anymore?
Why do games have consumables?
Don’t seats that recline flat defeat the purpose of having seatbelts?
Phrase for the opposite of "foolproof"
Reducing vertical space in stackrel
Exchange,swap or switch
How can I practically buy stocks?
How did Captain America manage to do this?
Why other Westeros houses don't use wildfire?
Is there an official tutorial for installing Ubuntu 18.04+ on a device with an SSD and an additional internal hard drive?
What does the "ep" capability mean?
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
How to verbalise code in Mathematica?
Do I have an "anti-research" personality?
The Defining Moment
How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?
Apply MapThread to all but one variable
Is it idiomatic to construct against `this`?
How to creep the reader out with what seems like a normal person?
glossary line indent of second line is not the same than in the first one
Suppress the glossary expansion at first occuranceHow do I create multiple glossary entries for the same definition?Glossary and list of acronyms in the same pageErrors when using glossaries packageHow to typeset the page number for the first occurrence of a glossary entry in the glossary list?Glossary useri not appearing in the glossary listSymbol or name referencing to the same glossary entryGlossary quote not linked after first useDifferent abbreviation options for the same acronym in glossaryHow to have different spellings of the same word in one entry in a glossary?
I have a problem with the formatting of the glossary. If the text is too long for one line, it continues in the next one. But the problem is that the line indent isn't the same than in the first line. where can i change this? attached you will find my demo code:
documentclass[12pt]{article}
usepackage[utf8]{inputenc} %Inputencoding: Umlaute richtig eingeben
usepackage[T1]{fontenc} %Fontencoding: Worte mit Umlauten richtig trennen
usepackage[ngerman]{babel}
usepackage{acronym}
usepackage{hyperref}
usepackage[
nonumberlist, %keine Seitenzahlen anzeigen
nogroupskip, %kein Abstand
acronym, %ein Abkürzungsverzeichnis erstellen
toc, %Einträge im Inhaltsverzeichnis
section] %im Inhaltsverzeichnis auf section-Ebene erscheinen
{glossaries}
%Ein eigenes Symbolverzeichnis erstellen
newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}
newglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis}
%Den Punkt am Ende jeder Beschreibung deaktivieren
renewcommand*{glspostdescription}{}
%Glossar-Befehle anschalten
makeglossaries
%%%%%%%%%%%%%%%%%%%%%%%%%%Settings%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
setlength{glslistdottedwidth}{.25hsize} %Punktlänge einstellen
newglossaryentry{romanletter}{name={textbf{large Lateinische Symbole}},description={}}
newglossaryentry{greekletter}{name={textbf{large Griechische Symbole}},description={}}
newglossaryentry{symb:omega}{
name=$Omega$,
description={Gierbeschleunigung},
parent=greekletter,
sort=symbolomega,
type=symbolslist
}
newglossaryentry{symb:M0}{
name=$M_{mathrm{0}}$,
description={gemessenes Biegemoment mittels Vollmessbrücken DMS Schaltung},
parent=romanletter,
sort=symbolM0,
type=symbolslist
}
newacronym{AVL-DRIVE}{AVL-DRIVE}{objektive Fahrbarkeitsanalysesoftware von AVL List GmbH}
newacronym{NCTE}{NCTE}{Deutsche Firma, die sich auf berührungslose Drehmomentmessung spezialisiert hat}
glsaddall[types=symbolslist]
glsaddall[types=acronymtype]
begin{document}
printglossary[type=symbolslist, style=sublistdotted]
printglossary[type=acronymtype, title=Abkürzungsverzeichnis, style=listdotted]
printglossary
end{document}
ADDED screenshot:

glossaries
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.
add a comment |
I have a problem with the formatting of the glossary. If the text is too long for one line, it continues in the next one. But the problem is that the line indent isn't the same than in the first line. where can i change this? attached you will find my demo code:
documentclass[12pt]{article}
usepackage[utf8]{inputenc} %Inputencoding: Umlaute richtig eingeben
usepackage[T1]{fontenc} %Fontencoding: Worte mit Umlauten richtig trennen
usepackage[ngerman]{babel}
usepackage{acronym}
usepackage{hyperref}
usepackage[
nonumberlist, %keine Seitenzahlen anzeigen
nogroupskip, %kein Abstand
acronym, %ein Abkürzungsverzeichnis erstellen
toc, %Einträge im Inhaltsverzeichnis
section] %im Inhaltsverzeichnis auf section-Ebene erscheinen
{glossaries}
%Ein eigenes Symbolverzeichnis erstellen
newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}
newglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis}
%Den Punkt am Ende jeder Beschreibung deaktivieren
renewcommand*{glspostdescription}{}
%Glossar-Befehle anschalten
makeglossaries
%%%%%%%%%%%%%%%%%%%%%%%%%%Settings%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
setlength{glslistdottedwidth}{.25hsize} %Punktlänge einstellen
newglossaryentry{romanletter}{name={textbf{large Lateinische Symbole}},description={}}
newglossaryentry{greekletter}{name={textbf{large Griechische Symbole}},description={}}
newglossaryentry{symb:omega}{
name=$Omega$,
description={Gierbeschleunigung},
parent=greekletter,
sort=symbolomega,
type=symbolslist
}
newglossaryentry{symb:M0}{
name=$M_{mathrm{0}}$,
description={gemessenes Biegemoment mittels Vollmessbrücken DMS Schaltung},
parent=romanletter,
sort=symbolM0,
type=symbolslist
}
newacronym{AVL-DRIVE}{AVL-DRIVE}{objektive Fahrbarkeitsanalysesoftware von AVL List GmbH}
newacronym{NCTE}{NCTE}{Deutsche Firma, die sich auf berührungslose Drehmomentmessung spezialisiert hat}
glsaddall[types=symbolslist]
glsaddall[types=acronymtype]
begin{document}
printglossary[type=symbolslist, style=sublistdotted]
printglossary[type=acronymtype, title=Abkürzungsverzeichnis, style=listdotted]
printglossary
end{document}
ADDED screenshot:

glossaries
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
Welcome to TeX.SE! Can you please add an screenshot of the result you got?
– Kurt
Oct 21 '18 at 20:20
i have added a screenshot :)
– keiner99
Oct 21 '18 at 20:27
Theacronympackage option creates the list of acronyms. The linenewglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis}isn't needed and conflicts withnewglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}, which has the same file extensions.
– Nicola Talbot
Nov 28 '18 at 20:40
add a comment |
I have a problem with the formatting of the glossary. If the text is too long for one line, it continues in the next one. But the problem is that the line indent isn't the same than in the first line. where can i change this? attached you will find my demo code:
documentclass[12pt]{article}
usepackage[utf8]{inputenc} %Inputencoding: Umlaute richtig eingeben
usepackage[T1]{fontenc} %Fontencoding: Worte mit Umlauten richtig trennen
usepackage[ngerman]{babel}
usepackage{acronym}
usepackage{hyperref}
usepackage[
nonumberlist, %keine Seitenzahlen anzeigen
nogroupskip, %kein Abstand
acronym, %ein Abkürzungsverzeichnis erstellen
toc, %Einträge im Inhaltsverzeichnis
section] %im Inhaltsverzeichnis auf section-Ebene erscheinen
{glossaries}
%Ein eigenes Symbolverzeichnis erstellen
newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}
newglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis}
%Den Punkt am Ende jeder Beschreibung deaktivieren
renewcommand*{glspostdescription}{}
%Glossar-Befehle anschalten
makeglossaries
%%%%%%%%%%%%%%%%%%%%%%%%%%Settings%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
setlength{glslistdottedwidth}{.25hsize} %Punktlänge einstellen
newglossaryentry{romanletter}{name={textbf{large Lateinische Symbole}},description={}}
newglossaryentry{greekletter}{name={textbf{large Griechische Symbole}},description={}}
newglossaryentry{symb:omega}{
name=$Omega$,
description={Gierbeschleunigung},
parent=greekletter,
sort=symbolomega,
type=symbolslist
}
newglossaryentry{symb:M0}{
name=$M_{mathrm{0}}$,
description={gemessenes Biegemoment mittels Vollmessbrücken DMS Schaltung},
parent=romanletter,
sort=symbolM0,
type=symbolslist
}
newacronym{AVL-DRIVE}{AVL-DRIVE}{objektive Fahrbarkeitsanalysesoftware von AVL List GmbH}
newacronym{NCTE}{NCTE}{Deutsche Firma, die sich auf berührungslose Drehmomentmessung spezialisiert hat}
glsaddall[types=symbolslist]
glsaddall[types=acronymtype]
begin{document}
printglossary[type=symbolslist, style=sublistdotted]
printglossary[type=acronymtype, title=Abkürzungsverzeichnis, style=listdotted]
printglossary
end{document}
ADDED screenshot:

glossaries
I have a problem with the formatting of the glossary. If the text is too long for one line, it continues in the next one. But the problem is that the line indent isn't the same than in the first line. where can i change this? attached you will find my demo code:
documentclass[12pt]{article}
usepackage[utf8]{inputenc} %Inputencoding: Umlaute richtig eingeben
usepackage[T1]{fontenc} %Fontencoding: Worte mit Umlauten richtig trennen
usepackage[ngerman]{babel}
usepackage{acronym}
usepackage{hyperref}
usepackage[
nonumberlist, %keine Seitenzahlen anzeigen
nogroupskip, %kein Abstand
acronym, %ein Abkürzungsverzeichnis erstellen
toc, %Einträge im Inhaltsverzeichnis
section] %im Inhaltsverzeichnis auf section-Ebene erscheinen
{glossaries}
%Ein eigenes Symbolverzeichnis erstellen
newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}
newglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis}
%Den Punkt am Ende jeder Beschreibung deaktivieren
renewcommand*{glspostdescription}{}
%Glossar-Befehle anschalten
makeglossaries
%%%%%%%%%%%%%%%%%%%%%%%%%%Settings%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
setlength{glslistdottedwidth}{.25hsize} %Punktlänge einstellen
newglossaryentry{romanletter}{name={textbf{large Lateinische Symbole}},description={}}
newglossaryentry{greekletter}{name={textbf{large Griechische Symbole}},description={}}
newglossaryentry{symb:omega}{
name=$Omega$,
description={Gierbeschleunigung},
parent=greekletter,
sort=symbolomega,
type=symbolslist
}
newglossaryentry{symb:M0}{
name=$M_{mathrm{0}}$,
description={gemessenes Biegemoment mittels Vollmessbrücken DMS Schaltung},
parent=romanletter,
sort=symbolM0,
type=symbolslist
}
newacronym{AVL-DRIVE}{AVL-DRIVE}{objektive Fahrbarkeitsanalysesoftware von AVL List GmbH}
newacronym{NCTE}{NCTE}{Deutsche Firma, die sich auf berührungslose Drehmomentmessung spezialisiert hat}
glsaddall[types=symbolslist]
glsaddall[types=acronymtype]
begin{document}
printglossary[type=symbolslist, style=sublistdotted]
printglossary[type=acronymtype, title=Abkürzungsverzeichnis, style=listdotted]
printglossary
end{document}
ADDED screenshot:

glossaries
glossaries
edited Oct 21 '18 at 20:27
keiner99
asked Oct 21 '18 at 20:06
keiner99keiner99
134
134
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
Welcome to TeX.SE! Can you please add an screenshot of the result you got?
– Kurt
Oct 21 '18 at 20:20
i have added a screenshot :)
– keiner99
Oct 21 '18 at 20:27
Theacronympackage option creates the list of acronyms. The linenewglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis}isn't needed and conflicts withnewglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}, which has the same file extensions.
– Nicola Talbot
Nov 28 '18 at 20:40
add a comment |
1
Welcome to TeX.SE! Can you please add an screenshot of the result you got?
– Kurt
Oct 21 '18 at 20:20
i have added a screenshot :)
– keiner99
Oct 21 '18 at 20:27
Theacronympackage option creates the list of acronyms. The linenewglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis}isn't needed and conflicts withnewglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}, which has the same file extensions.
– Nicola Talbot
Nov 28 '18 at 20:40
1
1
Welcome to TeX.SE! Can you please add an screenshot of the result you got?
– Kurt
Oct 21 '18 at 20:20
Welcome to TeX.SE! Can you please add an screenshot of the result you got?
– Kurt
Oct 21 '18 at 20:20
i have added a screenshot :)
– keiner99
Oct 21 '18 at 20:27
i have added a screenshot :)
– keiner99
Oct 21 '18 at 20:27
The
acronym package option creates the list of acronyms. The line newglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis} isn't needed and conflicts with newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}, which has the same file extensions.– Nicola Talbot
Nov 28 '18 at 20:40
The
acronym package option creates the list of acronyms. The line newglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis} isn't needed and conflicts with newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}, which has the same file extensions.– Nicola Talbot
Nov 28 '18 at 20:40
add a comment |
1 Answer
1
active
oldest
votes
I have now made my own glossary style:
newglossarystyle{altlistdotted}%
{%
glossarystyle{tree}%
renewcommand{glossaryentryfield}[5]{%
hangindent0ptrelax
parindent0ptrelax
makebox[glslistdottedwidth][l]%
{%
glsentryitem{##1}textbf{glstarget{##1}{##2}}%
unskipleadershbox to 2.9mm{hss.}hfillstrut
}%
parbox[t]{linewidth-glslistdottedwidth}{##3}par}%
}
glossarystyle{altlistdotted}
The result was, that the acronymlist is ok, but the symbollist isn't like i want it (see screenshot:
The symbollist looks like it would has the style=tree... but why?
I think this should be moved to your question since it isn't actually an answer. You're using some deprecated commands (glossarystyleandglossaryentryfield) so it would also help to say what version ofglossariesyou have installed.
– Nicola Talbot
Nov 28 '18 at 20:38
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%2f456160%2fglossary-line-indent-of-second-line-is-not-the-same-than-in-the-first-one%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
I have now made my own glossary style:
newglossarystyle{altlistdotted}%
{%
glossarystyle{tree}%
renewcommand{glossaryentryfield}[5]{%
hangindent0ptrelax
parindent0ptrelax
makebox[glslistdottedwidth][l]%
{%
glsentryitem{##1}textbf{glstarget{##1}{##2}}%
unskipleadershbox to 2.9mm{hss.}hfillstrut
}%
parbox[t]{linewidth-glslistdottedwidth}{##3}par}%
}
glossarystyle{altlistdotted}
The result was, that the acronymlist is ok, but the symbollist isn't like i want it (see screenshot:
The symbollist looks like it would has the style=tree... but why?
I think this should be moved to your question since it isn't actually an answer. You're using some deprecated commands (glossarystyleandglossaryentryfield) so it would also help to say what version ofglossariesyou have installed.
– Nicola Talbot
Nov 28 '18 at 20:38
add a comment |
I have now made my own glossary style:
newglossarystyle{altlistdotted}%
{%
glossarystyle{tree}%
renewcommand{glossaryentryfield}[5]{%
hangindent0ptrelax
parindent0ptrelax
makebox[glslistdottedwidth][l]%
{%
glsentryitem{##1}textbf{glstarget{##1}{##2}}%
unskipleadershbox to 2.9mm{hss.}hfillstrut
}%
parbox[t]{linewidth-glslistdottedwidth}{##3}par}%
}
glossarystyle{altlistdotted}
The result was, that the acronymlist is ok, but the symbollist isn't like i want it (see screenshot:
The symbollist looks like it would has the style=tree... but why?
I think this should be moved to your question since it isn't actually an answer. You're using some deprecated commands (glossarystyleandglossaryentryfield) so it would also help to say what version ofglossariesyou have installed.
– Nicola Talbot
Nov 28 '18 at 20:38
add a comment |
I have now made my own glossary style:
newglossarystyle{altlistdotted}%
{%
glossarystyle{tree}%
renewcommand{glossaryentryfield}[5]{%
hangindent0ptrelax
parindent0ptrelax
makebox[glslistdottedwidth][l]%
{%
glsentryitem{##1}textbf{glstarget{##1}{##2}}%
unskipleadershbox to 2.9mm{hss.}hfillstrut
}%
parbox[t]{linewidth-glslistdottedwidth}{##3}par}%
}
glossarystyle{altlistdotted}
The result was, that the acronymlist is ok, but the symbollist isn't like i want it (see screenshot:
The symbollist looks like it would has the style=tree... but why?
I have now made my own glossary style:
newglossarystyle{altlistdotted}%
{%
glossarystyle{tree}%
renewcommand{glossaryentryfield}[5]{%
hangindent0ptrelax
parindent0ptrelax
makebox[glslistdottedwidth][l]%
{%
glsentryitem{##1}textbf{glstarget{##1}{##2}}%
unskipleadershbox to 2.9mm{hss.}hfillstrut
}%
parbox[t]{linewidth-glslistdottedwidth}{##3}par}%
}
glossarystyle{altlistdotted}
The result was, that the acronymlist is ok, but the symbollist isn't like i want it (see screenshot:
The symbollist looks like it would has the style=tree... but why?
answered Oct 29 '18 at 19:25
keiner99keiner99
134
134
I think this should be moved to your question since it isn't actually an answer. You're using some deprecated commands (glossarystyleandglossaryentryfield) so it would also help to say what version ofglossariesyou have installed.
– Nicola Talbot
Nov 28 '18 at 20:38
add a comment |
I think this should be moved to your question since it isn't actually an answer. You're using some deprecated commands (glossarystyleandglossaryentryfield) so it would also help to say what version ofglossariesyou have installed.
– Nicola Talbot
Nov 28 '18 at 20:38
I think this should be moved to your question since it isn't actually an answer. You're using some deprecated commands (
glossarystyle and glossaryentryfield) so it would also help to say what version of glossaries you have installed.– Nicola Talbot
Nov 28 '18 at 20:38
I think this should be moved to your question since it isn't actually an answer. You're using some deprecated commands (
glossarystyle and glossaryentryfield) so it would also help to say what version of glossaries you have installed.– Nicola Talbot
Nov 28 '18 at 20:38
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%2f456160%2fglossary-line-indent-of-second-line-is-not-the-same-than-in-the-first-one%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
1
Welcome to TeX.SE! Can you please add an screenshot of the result you got?
– Kurt
Oct 21 '18 at 20:20
i have added a screenshot :)
– keiner99
Oct 21 '18 at 20:27
The
acronympackage option creates the list of acronyms. The linenewglossary[slg]{acronyms}{syi}{syg}{Abkürzungsverzeichnis}isn't needed and conflicts withnewglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}, which has the same file extensions.– Nicola Talbot
Nov 28 '18 at 20:40