With indentation set to `0em`, when using a line break, there is still an indentation of a size of a space Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar ManaraInclude a line break in algorithmic while maintaining indentationHanging line indentation with enumerateBibLaTeX: Wrong indentation when changing font size?algorithm2e indentation / line breakIndentation with “paracol” on multi-line text?Indentation and lacking space when using gb4e with minipagesUsing blank line as indentation: some sections it works, others it inserts a white lineAlgorithmicx - Indentation problem when using skipnumber to suppress line numbers?Unwanted caption indentation with longtable, when using width in captionsetupHow do I get indentation after automatic line break?

How do cards with "X" work?

Can you stand up from being prone using movement provided outside of your turn?

All ASCII characters with a given bit count

How do I check if a string is entirely made of the same substring?

How to open locks without disable device?

How to count in linear time worst-case?

Align column where each cell has two decimals with siunitx

Password Security Length vs. Complexity

Married in secret, can marital status in passport be changed at a later date?

Why did Israel vote against lifting the American embargo on Cuba?

Where did Arya get these scars?

Retract an already submitted recommendation letter (written for an undergrad student)

What if Force was not Mass times Acceleration?

401(k) cost basis

Dynamic Return Type

Why did C use the -> operator instead of reusing the . operator?

How can I make a line end at the edge of an irregular shape?

Why didn't the Space Shuttle bounce back into space many times as possible so that it loose lot of kinetic energy over there?

Mistake in years of experience in resume?

Would reducing the reference voltage of an ADC have any effect on accuracy?

Expansion//Explosion and Siren Stormtamer

What to do with someone that cheated their way through university and a PhD program?

Second order approximation of the loss function (Deep learning book, 7.33)

What is a 'Key' in computer science?



With indentation set to `0em`, when using a line break, there is still an indentation of a size of a space



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraInclude a line break in algorithmic while maintaining indentationHanging line indentation with enumerateBibLaTeX: Wrong indentation when changing font size?algorithm2e indentation / line breakIndentation with “paracol” on multi-line text?Indentation and lacking space when using gb4e with minipagesUsing blank line as indentation: some sections it works, others it inserts a white lineAlgorithmicx - Indentation problem when using skipnumber to suppress line numbers?Unwanted caption indentation with longtable, when using width in captionsetupHow do I get indentation after automatic line break?










3















Problem Description



I am quite a newbie at *TeX, but I defined some newcommands as some kind of paragraph styles (maybe not the proper way to do so, maybe someone could tell me how to accomplish this better).



I want to have default paragraph style with no indentation, space after paragraph should be 0.08", space before paragraph should be 0". However, any of the paragraph style could change any of these settings and some something more (like character styles, e.g. bold, italics, underline, etc).



Now, sometimes I want to insert a paragraph in particular paragraph style without space after that paragraph. For that I use line break (\), which usually does the job. However, with the paragraphStyle below, this is broken.



It seems like if in the first paragraph, there is an indentation of a size of a space, which I cannot elimininate, no matter what I do.



What I have Tried



I tried to use noindent and setlengthparindent0em in many different combinations.



Minimal Working Example



%%%%% Preamble %%%%%
documentclass[10pt]book
usepackage[a4paper]geometry
geometry
a4paper,
left=1in,
right=1in,
top=1in,
bottom=1in,
portrait


usepackagexcolor

% Font family
usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
setmainfontLibertinus Serif

% Paragraph and line settings
setlengthparindent0em % Set paragraph indentation
setlengthparskip0.08in % Paragraph spacing
renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

% Custom commands
newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

begindocument
pagestyleempty

This is wrong:

paragraphStyle
First line\
Second line


This is correct:

paragraphStyleFirst line\
paragraphStyleSecond line


Also this is correct in indentation, but not in space after paragraph:

First Line\
Second Line
enddocument


Output



enter image description here










share|improve this question
























  • this is really a very strange definition you are setting parindent and parskip hidden inside pargraphStyle but they are not in any local group so they apply to the rest of the document not just the text in the argument. I would seriously consider not using this markup and using a more normal latex constrict.

    – David Carlisle
    20 mins ago















3















Problem Description



I am quite a newbie at *TeX, but I defined some newcommands as some kind of paragraph styles (maybe not the proper way to do so, maybe someone could tell me how to accomplish this better).



I want to have default paragraph style with no indentation, space after paragraph should be 0.08", space before paragraph should be 0". However, any of the paragraph style could change any of these settings and some something more (like character styles, e.g. bold, italics, underline, etc).



Now, sometimes I want to insert a paragraph in particular paragraph style without space after that paragraph. For that I use line break (\), which usually does the job. However, with the paragraphStyle below, this is broken.



It seems like if in the first paragraph, there is an indentation of a size of a space, which I cannot elimininate, no matter what I do.



What I have Tried



I tried to use noindent and setlengthparindent0em in many different combinations.



Minimal Working Example



%%%%% Preamble %%%%%
documentclass[10pt]book
usepackage[a4paper]geometry
geometry
a4paper,
left=1in,
right=1in,
top=1in,
bottom=1in,
portrait


usepackagexcolor

% Font family
usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
setmainfontLibertinus Serif

% Paragraph and line settings
setlengthparindent0em % Set paragraph indentation
setlengthparskip0.08in % Paragraph spacing
renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

% Custom commands
newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

begindocument
pagestyleempty

This is wrong:

paragraphStyle
First line\
Second line


This is correct:

paragraphStyleFirst line\
paragraphStyleSecond line


Also this is correct in indentation, but not in space after paragraph:

First Line\
Second Line
enddocument


Output



enter image description here










share|improve this question
























  • this is really a very strange definition you are setting parindent and parskip hidden inside pargraphStyle but they are not in any local group so they apply to the rest of the document not just the text in the argument. I would seriously consider not using this markup and using a more normal latex constrict.

    – David Carlisle
    20 mins ago













3












3








3








Problem Description



I am quite a newbie at *TeX, but I defined some newcommands as some kind of paragraph styles (maybe not the proper way to do so, maybe someone could tell me how to accomplish this better).



I want to have default paragraph style with no indentation, space after paragraph should be 0.08", space before paragraph should be 0". However, any of the paragraph style could change any of these settings and some something more (like character styles, e.g. bold, italics, underline, etc).



Now, sometimes I want to insert a paragraph in particular paragraph style without space after that paragraph. For that I use line break (\), which usually does the job. However, with the paragraphStyle below, this is broken.



It seems like if in the first paragraph, there is an indentation of a size of a space, which I cannot elimininate, no matter what I do.



What I have Tried



I tried to use noindent and setlengthparindent0em in many different combinations.



Minimal Working Example



%%%%% Preamble %%%%%
documentclass[10pt]book
usepackage[a4paper]geometry
geometry
a4paper,
left=1in,
right=1in,
top=1in,
bottom=1in,
portrait


usepackagexcolor

% Font family
usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
setmainfontLibertinus Serif

% Paragraph and line settings
setlengthparindent0em % Set paragraph indentation
setlengthparskip0.08in % Paragraph spacing
renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

% Custom commands
newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

begindocument
pagestyleempty

This is wrong:

paragraphStyle
First line\
Second line


This is correct:

paragraphStyleFirst line\
paragraphStyleSecond line


Also this is correct in indentation, but not in space after paragraph:

First Line\
Second Line
enddocument


Output



enter image description here










share|improve this question
















Problem Description



I am quite a newbie at *TeX, but I defined some newcommands as some kind of paragraph styles (maybe not the proper way to do so, maybe someone could tell me how to accomplish this better).



I want to have default paragraph style with no indentation, space after paragraph should be 0.08", space before paragraph should be 0". However, any of the paragraph style could change any of these settings and some something more (like character styles, e.g. bold, italics, underline, etc).



Now, sometimes I want to insert a paragraph in particular paragraph style without space after that paragraph. For that I use line break (\), which usually does the job. However, with the paragraphStyle below, this is broken.



It seems like if in the first paragraph, there is an indentation of a size of a space, which I cannot elimininate, no matter what I do.



What I have Tried



I tried to use noindent and setlengthparindent0em in many different combinations.



Minimal Working Example



%%%%% Preamble %%%%%
documentclass[10pt]book
usepackage[a4paper]geometry
geometry
a4paper,
left=1in,
right=1in,
top=1in,
bottom=1in,
portrait


usepackagexcolor

% Font family
usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
setmainfontLibertinus Serif

% Paragraph and line settings
setlengthparindent0em % Set paragraph indentation
setlengthparskip0.08in % Paragraph spacing
renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

% Custom commands
newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

begindocument
pagestyleempty

This is wrong:

paragraphStyle
First line\
Second line


This is correct:

paragraphStyleFirst line\
paragraphStyleSecond line


Also this is correct in indentation, but not in space after paragraph:

First Line\
Second Line
enddocument


Output



enter image description here







luatex indentation






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 34 mins ago









Sebastiano

11.4k42366




11.4k42366










asked 42 mins ago









tukusejssirstukusejssirs

878




878












  • this is really a very strange definition you are setting parindent and parskip hidden inside pargraphStyle but they are not in any local group so they apply to the rest of the document not just the text in the argument. I would seriously consider not using this markup and using a more normal latex constrict.

    – David Carlisle
    20 mins ago

















  • this is really a very strange definition you are setting parindent and parskip hidden inside pargraphStyle but they are not in any local group so they apply to the rest of the document not just the text in the argument. I would seriously consider not using this markup and using a more normal latex constrict.

    – David Carlisle
    20 mins ago
















this is really a very strange definition you are setting parindent and parskip hidden inside pargraphStyle but they are not in any local group so they apply to the rest of the document not just the text in the argument. I would seriously consider not using this markup and using a more normal latex constrict.

– David Carlisle
20 mins ago





this is really a very strange definition you are setting parindent and parskip hidden inside pargraphStyle but they are not in any local group so they apply to the rest of the document not just the text in the argument. I would seriously consider not using this markup and using a more normal latex constrict.

– David Carlisle
20 mins ago










2 Answers
2






active

oldest

votes


















3














As Marcel pointed out, there is a stray space in your input. You can remove that space, as Marcel suggests, or you can add ignorespaces, within your macro definition, to your argument of textbf, prior to #1. Also, there is no need for the textbf to be in its own braces, so I removed it.



Note: an alternative for that part of the definition that now reads textbfignorespaces#1 could also be bfseries#1. Here, the braces are now necessary to limit the scope, but the ignorespaces is no longer required.



Also, I reorganized your definition of paragraphStyle to make it easier for humans to read. Note the presence of % end-of-line delimiters, to avoid the very same problem again.



documentclass[10pt]book
usepackage[a4paper]geometry
geometry
a4paper,
left=1in,
right=1in,
top=1in,
bottom=1in,
portrait


usepackagexcolor

% Font family
%usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
%setmainfontLibertinus Serif

% Paragraph and line settings
setlengthparindent0em % Set paragraph indentation
setlengthparskip0.08in % Paragraph spacing
renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

% Custom commands
newcommandparagraphStyle[1]%
setlengthparindent0pt%
setlengthparskip0.16in%
renewcommandbaselinestretch2.0%
colorblack!100%
fontsize20pt24pt%
selectfont%
textbfignorespaces#1%
colorblack!100%
normalsize%
setlengthparindent0em%
setlengthparskip0.08in%
selectfont%
renewcommandbaselinestretch1.0%
%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

begindocument
pagestyleempty

This is no longer wrong:

paragraphStyle
First line\
Second line


This is correct:

paragraphStyleFirst line\
paragraphStyleSecond line


Also this is correct in indentation, but not in space after paragraph:

First Line\
Second Line
enddocument


enter image description here






share|improve this answer

























  • ignorespaces is no longer required, because the space is absorbed in the aftermath of the macro bfseries no:-)

    – David Carlisle
    19 mins ago











  • @DavidCarlisle Why do you say that? bfseries<space><space><space><etc> #1 also produces no introduced spaces. What's the right terminology to describe this process?

    – Steven B. Segletes
    7 mins ago












  • ignorespaces was there to ignore spaces that are passed in at the start of #1 they would not be dropped in the way that a literal space after bfseries is dropped.

    – David Carlisle
    5 mins ago











  • @DavidCarlisle OK... But they are nonetheless dropped. Why?

    – Steven B. Segletes
    4 mins ago











  • @DavidCarlisle Is it a vertical/horizontal mode thing? That is, does bfseries not take one out of vertical mode? Whereas textbf does?

    – Steven B. Segletes
    1 min ago



















2














The "indentation of a size of a space" actually isn't an indentation, it is a space at the start of the line:



Look at



 This is wrong:

paragraphStyle
First line\
Second line



The newline after paragraphStyle{ is converted to a space which results in the observed "indentation".
You can avoid this by adding a % to comment the newline, suppressing the space:



 This is wrong:

paragraphStyle%
First line\
Second line



The full document becomes



%%%%% Preamble %%%%%
documentclass[10pt]book
usepackage[a4paper]geometry
geometry
a4paper,
left=1in,
right=1in,
top=1in,
bottom=1in,
portrait


usepackagexcolor

% Font family
usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
setmainfontLibertinus Serif

% Paragraph and line settings
setlengthparindent0em % Set paragraph indentation
setlengthparskip0.08in % Paragraph spacing
renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

% Custom commands
newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

begindocument
pagestyleempty

This is wrong:

paragraphStyle%
First line\
Second line


This is correct:

paragraphStyleFirst line\
paragraphStyleSecond line


Also this is correct in indentation, but not in space after paragraph:

First Line\
Second Line
enddocument





share|improve this answer























    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%2f487436%2fwith-indentation-set-to-0em-when-using-a-line-break-there-is-still-an-indent%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









    3














    As Marcel pointed out, there is a stray space in your input. You can remove that space, as Marcel suggests, or you can add ignorespaces, within your macro definition, to your argument of textbf, prior to #1. Also, there is no need for the textbf to be in its own braces, so I removed it.



    Note: an alternative for that part of the definition that now reads textbfignorespaces#1 could also be bfseries#1. Here, the braces are now necessary to limit the scope, but the ignorespaces is no longer required.



    Also, I reorganized your definition of paragraphStyle to make it easier for humans to read. Note the presence of % end-of-line delimiters, to avoid the very same problem again.



    documentclass[10pt]book
    usepackage[a4paper]geometry
    geometry
    a4paper,
    left=1in,
    right=1in,
    top=1in,
    bottom=1in,
    portrait


    usepackagexcolor

    % Font family
    %usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
    %setmainfontLibertinus Serif

    % Paragraph and line settings
    setlengthparindent0em % Set paragraph indentation
    setlengthparskip0.08in % Paragraph spacing
    renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

    % Custom commands
    newcommandparagraphStyle[1]%
    setlengthparindent0pt%
    setlengthparskip0.16in%
    renewcommandbaselinestretch2.0%
    colorblack!100%
    fontsize20pt24pt%
    selectfont%
    textbfignorespaces#1%
    colorblack!100%
    normalsize%
    setlengthparindent0em%
    setlengthparskip0.08in%
    selectfont%
    renewcommandbaselinestretch1.0%
    %

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    begindocument
    pagestyleempty

    This is no longer wrong:

    paragraphStyle
    First line\
    Second line


    This is correct:

    paragraphStyleFirst line\
    paragraphStyleSecond line


    Also this is correct in indentation, but not in space after paragraph:

    First Line\
    Second Line
    enddocument


    enter image description here






    share|improve this answer

























    • ignorespaces is no longer required, because the space is absorbed in the aftermath of the macro bfseries no:-)

      – David Carlisle
      19 mins ago











    • @DavidCarlisle Why do you say that? bfseries<space><space><space><etc> #1 also produces no introduced spaces. What's the right terminology to describe this process?

      – Steven B. Segletes
      7 mins ago












    • ignorespaces was there to ignore spaces that are passed in at the start of #1 they would not be dropped in the way that a literal space after bfseries is dropped.

      – David Carlisle
      5 mins ago











    • @DavidCarlisle OK... But they are nonetheless dropped. Why?

      – Steven B. Segletes
      4 mins ago











    • @DavidCarlisle Is it a vertical/horizontal mode thing? That is, does bfseries not take one out of vertical mode? Whereas textbf does?

      – Steven B. Segletes
      1 min ago
















    3














    As Marcel pointed out, there is a stray space in your input. You can remove that space, as Marcel suggests, or you can add ignorespaces, within your macro definition, to your argument of textbf, prior to #1. Also, there is no need for the textbf to be in its own braces, so I removed it.



    Note: an alternative for that part of the definition that now reads textbfignorespaces#1 could also be bfseries#1. Here, the braces are now necessary to limit the scope, but the ignorespaces is no longer required.



    Also, I reorganized your definition of paragraphStyle to make it easier for humans to read. Note the presence of % end-of-line delimiters, to avoid the very same problem again.



    documentclass[10pt]book
    usepackage[a4paper]geometry
    geometry
    a4paper,
    left=1in,
    right=1in,
    top=1in,
    bottom=1in,
    portrait


    usepackagexcolor

    % Font family
    %usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
    %setmainfontLibertinus Serif

    % Paragraph and line settings
    setlengthparindent0em % Set paragraph indentation
    setlengthparskip0.08in % Paragraph spacing
    renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

    % Custom commands
    newcommandparagraphStyle[1]%
    setlengthparindent0pt%
    setlengthparskip0.16in%
    renewcommandbaselinestretch2.0%
    colorblack!100%
    fontsize20pt24pt%
    selectfont%
    textbfignorespaces#1%
    colorblack!100%
    normalsize%
    setlengthparindent0em%
    setlengthparskip0.08in%
    selectfont%
    renewcommandbaselinestretch1.0%
    %

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    begindocument
    pagestyleempty

    This is no longer wrong:

    paragraphStyle
    First line\
    Second line


    This is correct:

    paragraphStyleFirst line\
    paragraphStyleSecond line


    Also this is correct in indentation, but not in space after paragraph:

    First Line\
    Second Line
    enddocument


    enter image description here






    share|improve this answer

























    • ignorespaces is no longer required, because the space is absorbed in the aftermath of the macro bfseries no:-)

      – David Carlisle
      19 mins ago











    • @DavidCarlisle Why do you say that? bfseries<space><space><space><etc> #1 also produces no introduced spaces. What's the right terminology to describe this process?

      – Steven B. Segletes
      7 mins ago












    • ignorespaces was there to ignore spaces that are passed in at the start of #1 they would not be dropped in the way that a literal space after bfseries is dropped.

      – David Carlisle
      5 mins ago











    • @DavidCarlisle OK... But they are nonetheless dropped. Why?

      – Steven B. Segletes
      4 mins ago











    • @DavidCarlisle Is it a vertical/horizontal mode thing? That is, does bfseries not take one out of vertical mode? Whereas textbf does?

      – Steven B. Segletes
      1 min ago














    3












    3








    3







    As Marcel pointed out, there is a stray space in your input. You can remove that space, as Marcel suggests, or you can add ignorespaces, within your macro definition, to your argument of textbf, prior to #1. Also, there is no need for the textbf to be in its own braces, so I removed it.



    Note: an alternative for that part of the definition that now reads textbfignorespaces#1 could also be bfseries#1. Here, the braces are now necessary to limit the scope, but the ignorespaces is no longer required.



    Also, I reorganized your definition of paragraphStyle to make it easier for humans to read. Note the presence of % end-of-line delimiters, to avoid the very same problem again.



    documentclass[10pt]book
    usepackage[a4paper]geometry
    geometry
    a4paper,
    left=1in,
    right=1in,
    top=1in,
    bottom=1in,
    portrait


    usepackagexcolor

    % Font family
    %usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
    %setmainfontLibertinus Serif

    % Paragraph and line settings
    setlengthparindent0em % Set paragraph indentation
    setlengthparskip0.08in % Paragraph spacing
    renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

    % Custom commands
    newcommandparagraphStyle[1]%
    setlengthparindent0pt%
    setlengthparskip0.16in%
    renewcommandbaselinestretch2.0%
    colorblack!100%
    fontsize20pt24pt%
    selectfont%
    textbfignorespaces#1%
    colorblack!100%
    normalsize%
    setlengthparindent0em%
    setlengthparskip0.08in%
    selectfont%
    renewcommandbaselinestretch1.0%
    %

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    begindocument
    pagestyleempty

    This is no longer wrong:

    paragraphStyle
    First line\
    Second line


    This is correct:

    paragraphStyleFirst line\
    paragraphStyleSecond line


    Also this is correct in indentation, but not in space after paragraph:

    First Line\
    Second Line
    enddocument


    enter image description here






    share|improve this answer















    As Marcel pointed out, there is a stray space in your input. You can remove that space, as Marcel suggests, or you can add ignorespaces, within your macro definition, to your argument of textbf, prior to #1. Also, there is no need for the textbf to be in its own braces, so I removed it.



    Note: an alternative for that part of the definition that now reads textbfignorespaces#1 could also be bfseries#1. Here, the braces are now necessary to limit the scope, but the ignorespaces is no longer required.



    Also, I reorganized your definition of paragraphStyle to make it easier for humans to read. Note the presence of % end-of-line delimiters, to avoid the very same problem again.



    documentclass[10pt]book
    usepackage[a4paper]geometry
    geometry
    a4paper,
    left=1in,
    right=1in,
    top=1in,
    bottom=1in,
    portrait


    usepackagexcolor

    % Font family
    %usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
    %setmainfontLibertinus Serif

    % Paragraph and line settings
    setlengthparindent0em % Set paragraph indentation
    setlengthparskip0.08in % Paragraph spacing
    renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

    % Custom commands
    newcommandparagraphStyle[1]%
    setlengthparindent0pt%
    setlengthparskip0.16in%
    renewcommandbaselinestretch2.0%
    colorblack!100%
    fontsize20pt24pt%
    selectfont%
    textbfignorespaces#1%
    colorblack!100%
    normalsize%
    setlengthparindent0em%
    setlengthparskip0.08in%
    selectfont%
    renewcommandbaselinestretch1.0%
    %

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    begindocument
    pagestyleempty

    This is no longer wrong:

    paragraphStyle
    First line\
    Second line


    This is correct:

    paragraphStyleFirst line\
    paragraphStyleSecond line


    Also this is correct in indentation, but not in space after paragraph:

    First Line\
    Second Line
    enddocument


    enter image description here







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 3 mins ago

























    answered 36 mins ago









    Steven B. SegletesSteven B. Segletes

    163k9207420




    163k9207420












    • ignorespaces is no longer required, because the space is absorbed in the aftermath of the macro bfseries no:-)

      – David Carlisle
      19 mins ago











    • @DavidCarlisle Why do you say that? bfseries<space><space><space><etc> #1 also produces no introduced spaces. What's the right terminology to describe this process?

      – Steven B. Segletes
      7 mins ago












    • ignorespaces was there to ignore spaces that are passed in at the start of #1 they would not be dropped in the way that a literal space after bfseries is dropped.

      – David Carlisle
      5 mins ago











    • @DavidCarlisle OK... But they are nonetheless dropped. Why?

      – Steven B. Segletes
      4 mins ago











    • @DavidCarlisle Is it a vertical/horizontal mode thing? That is, does bfseries not take one out of vertical mode? Whereas textbf does?

      – Steven B. Segletes
      1 min ago


















    • ignorespaces is no longer required, because the space is absorbed in the aftermath of the macro bfseries no:-)

      – David Carlisle
      19 mins ago











    • @DavidCarlisle Why do you say that? bfseries<space><space><space><etc> #1 also produces no introduced spaces. What's the right terminology to describe this process?

      – Steven B. Segletes
      7 mins ago












    • ignorespaces was there to ignore spaces that are passed in at the start of #1 they would not be dropped in the way that a literal space after bfseries is dropped.

      – David Carlisle
      5 mins ago











    • @DavidCarlisle OK... But they are nonetheless dropped. Why?

      – Steven B. Segletes
      4 mins ago











    • @DavidCarlisle Is it a vertical/horizontal mode thing? That is, does bfseries not take one out of vertical mode? Whereas textbf does?

      – Steven B. Segletes
      1 min ago

















    ignorespaces is no longer required, because the space is absorbed in the aftermath of the macro bfseries no:-)

    – David Carlisle
    19 mins ago





    ignorespaces is no longer required, because the space is absorbed in the aftermath of the macro bfseries no:-)

    – David Carlisle
    19 mins ago













    @DavidCarlisle Why do you say that? bfseries<space><space><space><etc> #1 also produces no introduced spaces. What's the right terminology to describe this process?

    – Steven B. Segletes
    7 mins ago






    @DavidCarlisle Why do you say that? bfseries<space><space><space><etc> #1 also produces no introduced spaces. What's the right terminology to describe this process?

    – Steven B. Segletes
    7 mins ago














    ignorespaces was there to ignore spaces that are passed in at the start of #1 they would not be dropped in the way that a literal space after bfseries is dropped.

    – David Carlisle
    5 mins ago





    ignorespaces was there to ignore spaces that are passed in at the start of #1 they would not be dropped in the way that a literal space after bfseries is dropped.

    – David Carlisle
    5 mins ago













    @DavidCarlisle OK... But they are nonetheless dropped. Why?

    – Steven B. Segletes
    4 mins ago





    @DavidCarlisle OK... But they are nonetheless dropped. Why?

    – Steven B. Segletes
    4 mins ago













    @DavidCarlisle Is it a vertical/horizontal mode thing? That is, does bfseries not take one out of vertical mode? Whereas textbf does?

    – Steven B. Segletes
    1 min ago






    @DavidCarlisle Is it a vertical/horizontal mode thing? That is, does bfseries not take one out of vertical mode? Whereas textbf does?

    – Steven B. Segletes
    1 min ago












    2














    The "indentation of a size of a space" actually isn't an indentation, it is a space at the start of the line:



    Look at



     This is wrong:

    paragraphStyle
    First line\
    Second line



    The newline after paragraphStyle{ is converted to a space which results in the observed "indentation".
    You can avoid this by adding a % to comment the newline, suppressing the space:



     This is wrong:

    paragraphStyle%
    First line\
    Second line



    The full document becomes



    %%%%% Preamble %%%%%
    documentclass[10pt]book
    usepackage[a4paper]geometry
    geometry
    a4paper,
    left=1in,
    right=1in,
    top=1in,
    bottom=1in,
    portrait


    usepackagexcolor

    % Font family
    usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
    setmainfontLibertinus Serif

    % Paragraph and line settings
    setlengthparindent0em % Set paragraph indentation
    setlengthparskip0.08in % Paragraph spacing
    renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

    % Custom commands
    newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    begindocument
    pagestyleempty

    This is wrong:

    paragraphStyle%
    First line\
    Second line


    This is correct:

    paragraphStyleFirst line\
    paragraphStyleSecond line


    Also this is correct in indentation, but not in space after paragraph:

    First Line\
    Second Line
    enddocument





    share|improve this answer



























      2














      The "indentation of a size of a space" actually isn't an indentation, it is a space at the start of the line:



      Look at



       This is wrong:

      paragraphStyle
      First line\
      Second line



      The newline after paragraphStyle{ is converted to a space which results in the observed "indentation".
      You can avoid this by adding a % to comment the newline, suppressing the space:



       This is wrong:

      paragraphStyle%
      First line\
      Second line



      The full document becomes



      %%%%% Preamble %%%%%
      documentclass[10pt]book
      usepackage[a4paper]geometry
      geometry
      a4paper,
      left=1in,
      right=1in,
      top=1in,
      bottom=1in,
      portrait


      usepackagexcolor

      % Font family
      usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
      setmainfontLibertinus Serif

      % Paragraph and line settings
      setlengthparindent0em % Set paragraph indentation
      setlengthparskip0.08in % Paragraph spacing
      renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

      % Custom commands
      newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

      begindocument
      pagestyleempty

      This is wrong:

      paragraphStyle%
      First line\
      Second line


      This is correct:

      paragraphStyleFirst line\
      paragraphStyleSecond line


      Also this is correct in indentation, but not in space after paragraph:

      First Line\
      Second Line
      enddocument





      share|improve this answer

























        2












        2








        2







        The "indentation of a size of a space" actually isn't an indentation, it is a space at the start of the line:



        Look at



         This is wrong:

        paragraphStyle
        First line\
        Second line



        The newline after paragraphStyle{ is converted to a space which results in the observed "indentation".
        You can avoid this by adding a % to comment the newline, suppressing the space:



         This is wrong:

        paragraphStyle%
        First line\
        Second line



        The full document becomes



        %%%%% Preamble %%%%%
        documentclass[10pt]book
        usepackage[a4paper]geometry
        geometry
        a4paper,
        left=1in,
        right=1in,
        top=1in,
        bottom=1in,
        portrait


        usepackagexcolor

        % Font family
        usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
        setmainfontLibertinus Serif

        % Paragraph and line settings
        setlengthparindent0em % Set paragraph indentation
        setlengthparskip0.08in % Paragraph spacing
        renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

        % Custom commands
        newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

        %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
        %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

        begindocument
        pagestyleempty

        This is wrong:

        paragraphStyle%
        First line\
        Second line


        This is correct:

        paragraphStyleFirst line\
        paragraphStyleSecond line


        Also this is correct in indentation, but not in space after paragraph:

        First Line\
        Second Line
        enddocument





        share|improve this answer













        The "indentation of a size of a space" actually isn't an indentation, it is a space at the start of the line:



        Look at



         This is wrong:

        paragraphStyle
        First line\
        Second line



        The newline after paragraphStyle{ is converted to a space which results in the observed "indentation".
        You can avoid this by adding a % to comment the newline, suppressing the space:



         This is wrong:

        paragraphStyle%
        First line\
        Second line



        The full document becomes



        %%%%% Preamble %%%%%
        documentclass[10pt]book
        usepackage[a4paper]geometry
        geometry
        a4paper,
        left=1in,
        right=1in,
        top=1in,
        bottom=1in,
        portrait


        usepackagexcolor

        % Font family
        usepackage[math-style=ISO, bold-style=ISO, partial=upright, nabla=upright]unicode-math
        setmainfontLibertinus Serif

        % Paragraph and line settings
        setlengthparindent0em % Set paragraph indentation
        setlengthparskip0.08in % Paragraph spacing
        renewcommandbaselinestretch1.0 % Line expandafterselectlanguageexpandaftercvlang

        % Custom commands
        newcommandparagraphStyle[1]setlengthparindent0ptsetlengthparskip0.16inrenewcommandbaselinestretch2.0colorblack!100fontsize20pt24ptselectfonttextbf#1colorblack!100normalsizesetlengthparindent0emsetlengthparskip0.08inselectfontrenewcommandbaselinestretch1.0%

        %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
        %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

        begindocument
        pagestyleempty

        This is wrong:

        paragraphStyle%
        First line\
        Second line


        This is correct:

        paragraphStyleFirst line\
        paragraphStyleSecond line


        Also this is correct in indentation, but not in space after paragraph:

        First Line\
        Second Line
        enddocument






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 37 mins ago









        Marcel KrügerMarcel Krüger

        13k11636




        13k11636



























            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%2f487436%2fwith-indentation-set-to-0em-when-using-a-line-break-there-is-still-an-indent%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

            Era Viking Índice Início da Era Viquingue | Cotidiano | Sociedade | Língua | Religião | A arte | As primeiras cidades | As viagens dos viquingues | Viquingues do Oeste e Leste | Fim da Era Viquingue | Fontes históricas | Referências Bibliografia | Ligações externas | Menu de navegação«Sverige då!»«Handel I vikingetid»«O que é Nórdico Antigo»Mito, magia e religião na volsunga saga Um olhar sobre a trajetória mítica do herói sigurd«Bonden var den verklige vikingen»«Vikingatiden»«Vikingatiden»«Vinland»«Guerreiras de Óðinn: As Valkyrjor na Mitologia Viking»1519-9053«Esculpindo símbolos e seres: A arte viking em pedras rúnicas»1679-9313Historia - Tema: VikingarnaAventura e Magia no Mundo das Sagas IslandesasEra Vikinge

            What's the metal clinking sound at the end of credits in Avengers: Endgame?What makes Thanos so strong in Avengers: Endgame?Who is the character that appears at the end of Endgame?What happens to Mjolnir (Thor's hammer) at the end of Endgame?The People's Ages in Avengers: EndgameWhat did Nebula do in Avengers: Endgame?Messing with time in the Avengers: Endgame climaxAvengers: Endgame timelineWhat are the time-travel rules in Avengers Endgame?Why use this song in Avengers: Endgame Opening Logo Sequence?Peggy's age in Avengers Endgame

            Are there legal definitions of ethnicities/races? The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Legal definitions in the United StatesAre there truly legal limits on US interest rates?Are gender identity and sexual orientation federally protected?Why is there an apparent legal bias against digital services?What limits are there to the powers of individual judges in the United States legal system?Are women only scholarships legal under Irish / EU law?Is the term “race” defined by Public Law enacted by Congress of the United StatesIs there a legal definition of race in the US?Neighbors are spying for landlord on Renters is it legal?Are Protected Classes Bi-directional?