How to layout left margin and bullets using parskip












0















There is a fairly typical layout style in technical manual in which headings are numbered and left justified. The text then is indented about 1cm so that it appears as if there is a larger left margin, and the numbers from the headings extending into this margin. I got the basic support from a package called parskip which gets me 95% of the way there.



I shifted the paragraphs over using setlength{leftskip}{1cm}



I want to have bullets, this is the challenge. The bullets should be slightly more indented than the paragraphs. I succeeded in getting this by the following left margin settings (note that the top level has an extra 1cm to make it fall under the paragraph):



usepackage{enumitem}
setlist[itemize,1]{leftmargin=1.4cm}
setlist[itemize,2]{leftmargin=0.5cm}
setlist[itemize,3]{leftmargin=0.5cm}


This looks like this:



enter image description here



the problem is that I also have boxes called "notes" which contain text, and also contain bullets. When used in a note, I DON'T want the extra 1cm shift over. Note in this example how the bullets are too far indented:



enter image description here



I need to define bullets in such a way that they work both in the main text, and the note boxes.



I am thinking there might be a better way to do this: define the left and right margin to be the edges of the text area, and change the heading to "outdent" into that space, outside of the text area. I am afraid my command of just how the various dimension effect other dimensions is not good enough to figure out how to do this, or even to know whether that is a good approach. Suggestions?



I am including a complete example below, with several sections, text, and bullet sections:



documentclass[letterpaper,11pt,pagesize=pdftex,openright,headings=twolinechapter,chapterprefix=true]{scrbook}

usepackage{graphicx}
usepackage{wrapfig}
usepackage[table]{xcolor}
usepackage{makeidx}
usepackage{fontspec}
usepackage{longtable}
usepackage{nameref}


setmainfont[Ligatures={Common,TeX}, Numbers={OldStyle}]{Arial}
addtokomafont{footnote}{footnotesizefontspec[Ligatures=TeX]{Arial}}
deffootnote{1.5em}{1em}{% modified example from page 83
makebox[1.5em][l]{textsuperscript{thefootnotemark}}}


makeindex

usepackage[inner=1in,outer=1in,top=1.0in, bottom=1.0in, footnotesep=.4in]{geometry}


%Page size settings
pdfpagewidth=paperwidth
pdfpageheight=paperheight

%parskip gives us outdented headers with numbers, no indent on paragraphs
%and a little vertical space between paragraphs.
usepackage{parskip}
setlength{leftskip}{1cm}

setlength{emergencystretch}{15pt}


%control whether extra vertical space is distributed between paragraphs
%either raggedbottom or flushbottom
raggedbottom

usepackage{hyperref}
hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=purple,
urlcolor=black
}

usepackage{scrhack}
usepackage{lineno}
usepackage{listings}


%TABLES
%make more space between lines
renewcommand{arraystretch}{1.3}

renewcommand{labelitemi}{textbullet}
renewcommand{labelitemii}{textbullet}
renewcommand{labelitemiii}{textbullet}

usepackage{enumitem}
setlist[itemize,1]{leftmargin=1.4cm}
setlist[itemize,2]{leftmargin=0.5cm}
setlist[itemize,3]{leftmargin=0.5cm}
setlist[enumerate,1]{leftmargin=1.4cm}
setlist[enumerate,2]{leftmargin=0.5cm}
setlist[enumerate,3]{leftmargin=0.5cm}



usepackage{tcolorbox}
colorlet{notecolor}{gray!25}

newenvironment{note}%
{begin{tcolorbox}[colframe=notecolor,width=0.94textwidth,left=1pt,right=1pt] Note: }%
{end{tcolorbox}}


begin{document}

frontmatter

mainmatter

chapter{This is a chapter heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

section{Section Heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.


subsection{Subsection Heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

begin{itemize}

item first item

item second item

begin{itemize}

item first nested

item second nested

end{itemize}

item third item

end{itemize}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

subsection{This is the second subsection}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

begin{note}

This is a note and below some bullets

begin{itemize}

item first item

item second item

begin{itemize}

item first nested

item second nested

end{itemize}

item third item

end{itemize}

end{note}


This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

end{document}









share|improve this question























  • Another (simpler?) possibility would be to make the chapter and section title start in the left margin. This is not hard to do with package titlesec.

    – Bernard
    2 hours ago
















0















There is a fairly typical layout style in technical manual in which headings are numbered and left justified. The text then is indented about 1cm so that it appears as if there is a larger left margin, and the numbers from the headings extending into this margin. I got the basic support from a package called parskip which gets me 95% of the way there.



I shifted the paragraphs over using setlength{leftskip}{1cm}



I want to have bullets, this is the challenge. The bullets should be slightly more indented than the paragraphs. I succeeded in getting this by the following left margin settings (note that the top level has an extra 1cm to make it fall under the paragraph):



usepackage{enumitem}
setlist[itemize,1]{leftmargin=1.4cm}
setlist[itemize,2]{leftmargin=0.5cm}
setlist[itemize,3]{leftmargin=0.5cm}


This looks like this:



enter image description here



the problem is that I also have boxes called "notes" which contain text, and also contain bullets. When used in a note, I DON'T want the extra 1cm shift over. Note in this example how the bullets are too far indented:



enter image description here



I need to define bullets in such a way that they work both in the main text, and the note boxes.



I am thinking there might be a better way to do this: define the left and right margin to be the edges of the text area, and change the heading to "outdent" into that space, outside of the text area. I am afraid my command of just how the various dimension effect other dimensions is not good enough to figure out how to do this, or even to know whether that is a good approach. Suggestions?



I am including a complete example below, with several sections, text, and bullet sections:



documentclass[letterpaper,11pt,pagesize=pdftex,openright,headings=twolinechapter,chapterprefix=true]{scrbook}

usepackage{graphicx}
usepackage{wrapfig}
usepackage[table]{xcolor}
usepackage{makeidx}
usepackage{fontspec}
usepackage{longtable}
usepackage{nameref}


setmainfont[Ligatures={Common,TeX}, Numbers={OldStyle}]{Arial}
addtokomafont{footnote}{footnotesizefontspec[Ligatures=TeX]{Arial}}
deffootnote{1.5em}{1em}{% modified example from page 83
makebox[1.5em][l]{textsuperscript{thefootnotemark}}}


makeindex

usepackage[inner=1in,outer=1in,top=1.0in, bottom=1.0in, footnotesep=.4in]{geometry}


%Page size settings
pdfpagewidth=paperwidth
pdfpageheight=paperheight

%parskip gives us outdented headers with numbers, no indent on paragraphs
%and a little vertical space between paragraphs.
usepackage{parskip}
setlength{leftskip}{1cm}

setlength{emergencystretch}{15pt}


%control whether extra vertical space is distributed between paragraphs
%either raggedbottom or flushbottom
raggedbottom

usepackage{hyperref}
hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=purple,
urlcolor=black
}

usepackage{scrhack}
usepackage{lineno}
usepackage{listings}


%TABLES
%make more space between lines
renewcommand{arraystretch}{1.3}

renewcommand{labelitemi}{textbullet}
renewcommand{labelitemii}{textbullet}
renewcommand{labelitemiii}{textbullet}

usepackage{enumitem}
setlist[itemize,1]{leftmargin=1.4cm}
setlist[itemize,2]{leftmargin=0.5cm}
setlist[itemize,3]{leftmargin=0.5cm}
setlist[enumerate,1]{leftmargin=1.4cm}
setlist[enumerate,2]{leftmargin=0.5cm}
setlist[enumerate,3]{leftmargin=0.5cm}



usepackage{tcolorbox}
colorlet{notecolor}{gray!25}

newenvironment{note}%
{begin{tcolorbox}[colframe=notecolor,width=0.94textwidth,left=1pt,right=1pt] Note: }%
{end{tcolorbox}}


begin{document}

frontmatter

mainmatter

chapter{This is a chapter heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

section{Section Heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.


subsection{Subsection Heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

begin{itemize}

item first item

item second item

begin{itemize}

item first nested

item second nested

end{itemize}

item third item

end{itemize}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

subsection{This is the second subsection}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

begin{note}

This is a note and below some bullets

begin{itemize}

item first item

item second item

begin{itemize}

item first nested

item second nested

end{itemize}

item third item

end{itemize}

end{note}


This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

end{document}









share|improve this question























  • Another (simpler?) possibility would be to make the chapter and section title start in the left margin. This is not hard to do with package titlesec.

    – Bernard
    2 hours ago














0












0








0








There is a fairly typical layout style in technical manual in which headings are numbered and left justified. The text then is indented about 1cm so that it appears as if there is a larger left margin, and the numbers from the headings extending into this margin. I got the basic support from a package called parskip which gets me 95% of the way there.



I shifted the paragraphs over using setlength{leftskip}{1cm}



I want to have bullets, this is the challenge. The bullets should be slightly more indented than the paragraphs. I succeeded in getting this by the following left margin settings (note that the top level has an extra 1cm to make it fall under the paragraph):



usepackage{enumitem}
setlist[itemize,1]{leftmargin=1.4cm}
setlist[itemize,2]{leftmargin=0.5cm}
setlist[itemize,3]{leftmargin=0.5cm}


This looks like this:



enter image description here



the problem is that I also have boxes called "notes" which contain text, and also contain bullets. When used in a note, I DON'T want the extra 1cm shift over. Note in this example how the bullets are too far indented:



enter image description here



I need to define bullets in such a way that they work both in the main text, and the note boxes.



I am thinking there might be a better way to do this: define the left and right margin to be the edges of the text area, and change the heading to "outdent" into that space, outside of the text area. I am afraid my command of just how the various dimension effect other dimensions is not good enough to figure out how to do this, or even to know whether that is a good approach. Suggestions?



I am including a complete example below, with several sections, text, and bullet sections:



documentclass[letterpaper,11pt,pagesize=pdftex,openright,headings=twolinechapter,chapterprefix=true]{scrbook}

usepackage{graphicx}
usepackage{wrapfig}
usepackage[table]{xcolor}
usepackage{makeidx}
usepackage{fontspec}
usepackage{longtable}
usepackage{nameref}


setmainfont[Ligatures={Common,TeX}, Numbers={OldStyle}]{Arial}
addtokomafont{footnote}{footnotesizefontspec[Ligatures=TeX]{Arial}}
deffootnote{1.5em}{1em}{% modified example from page 83
makebox[1.5em][l]{textsuperscript{thefootnotemark}}}


makeindex

usepackage[inner=1in,outer=1in,top=1.0in, bottom=1.0in, footnotesep=.4in]{geometry}


%Page size settings
pdfpagewidth=paperwidth
pdfpageheight=paperheight

%parskip gives us outdented headers with numbers, no indent on paragraphs
%and a little vertical space between paragraphs.
usepackage{parskip}
setlength{leftskip}{1cm}

setlength{emergencystretch}{15pt}


%control whether extra vertical space is distributed between paragraphs
%either raggedbottom or flushbottom
raggedbottom

usepackage{hyperref}
hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=purple,
urlcolor=black
}

usepackage{scrhack}
usepackage{lineno}
usepackage{listings}


%TABLES
%make more space between lines
renewcommand{arraystretch}{1.3}

renewcommand{labelitemi}{textbullet}
renewcommand{labelitemii}{textbullet}
renewcommand{labelitemiii}{textbullet}

usepackage{enumitem}
setlist[itemize,1]{leftmargin=1.4cm}
setlist[itemize,2]{leftmargin=0.5cm}
setlist[itemize,3]{leftmargin=0.5cm}
setlist[enumerate,1]{leftmargin=1.4cm}
setlist[enumerate,2]{leftmargin=0.5cm}
setlist[enumerate,3]{leftmargin=0.5cm}



usepackage{tcolorbox}
colorlet{notecolor}{gray!25}

newenvironment{note}%
{begin{tcolorbox}[colframe=notecolor,width=0.94textwidth,left=1pt,right=1pt] Note: }%
{end{tcolorbox}}


begin{document}

frontmatter

mainmatter

chapter{This is a chapter heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

section{Section Heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.


subsection{Subsection Heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

begin{itemize}

item first item

item second item

begin{itemize}

item first nested

item second nested

end{itemize}

item third item

end{itemize}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

subsection{This is the second subsection}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

begin{note}

This is a note and below some bullets

begin{itemize}

item first item

item second item

begin{itemize}

item first nested

item second nested

end{itemize}

item third item

end{itemize}

end{note}


This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

end{document}









share|improve this question














There is a fairly typical layout style in technical manual in which headings are numbered and left justified. The text then is indented about 1cm so that it appears as if there is a larger left margin, and the numbers from the headings extending into this margin. I got the basic support from a package called parskip which gets me 95% of the way there.



I shifted the paragraphs over using setlength{leftskip}{1cm}



I want to have bullets, this is the challenge. The bullets should be slightly more indented than the paragraphs. I succeeded in getting this by the following left margin settings (note that the top level has an extra 1cm to make it fall under the paragraph):



usepackage{enumitem}
setlist[itemize,1]{leftmargin=1.4cm}
setlist[itemize,2]{leftmargin=0.5cm}
setlist[itemize,3]{leftmargin=0.5cm}


This looks like this:



enter image description here



the problem is that I also have boxes called "notes" which contain text, and also contain bullets. When used in a note, I DON'T want the extra 1cm shift over. Note in this example how the bullets are too far indented:



enter image description here



I need to define bullets in such a way that they work both in the main text, and the note boxes.



I am thinking there might be a better way to do this: define the left and right margin to be the edges of the text area, and change the heading to "outdent" into that space, outside of the text area. I am afraid my command of just how the various dimension effect other dimensions is not good enough to figure out how to do this, or even to know whether that is a good approach. Suggestions?



I am including a complete example below, with several sections, text, and bullet sections:



documentclass[letterpaper,11pt,pagesize=pdftex,openright,headings=twolinechapter,chapterprefix=true]{scrbook}

usepackage{graphicx}
usepackage{wrapfig}
usepackage[table]{xcolor}
usepackage{makeidx}
usepackage{fontspec}
usepackage{longtable}
usepackage{nameref}


setmainfont[Ligatures={Common,TeX}, Numbers={OldStyle}]{Arial}
addtokomafont{footnote}{footnotesizefontspec[Ligatures=TeX]{Arial}}
deffootnote{1.5em}{1em}{% modified example from page 83
makebox[1.5em][l]{textsuperscript{thefootnotemark}}}


makeindex

usepackage[inner=1in,outer=1in,top=1.0in, bottom=1.0in, footnotesep=.4in]{geometry}


%Page size settings
pdfpagewidth=paperwidth
pdfpageheight=paperheight

%parskip gives us outdented headers with numbers, no indent on paragraphs
%and a little vertical space between paragraphs.
usepackage{parskip}
setlength{leftskip}{1cm}

setlength{emergencystretch}{15pt}


%control whether extra vertical space is distributed between paragraphs
%either raggedbottom or flushbottom
raggedbottom

usepackage{hyperref}
hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=purple,
urlcolor=black
}

usepackage{scrhack}
usepackage{lineno}
usepackage{listings}


%TABLES
%make more space between lines
renewcommand{arraystretch}{1.3}

renewcommand{labelitemi}{textbullet}
renewcommand{labelitemii}{textbullet}
renewcommand{labelitemiii}{textbullet}

usepackage{enumitem}
setlist[itemize,1]{leftmargin=1.4cm}
setlist[itemize,2]{leftmargin=0.5cm}
setlist[itemize,3]{leftmargin=0.5cm}
setlist[enumerate,1]{leftmargin=1.4cm}
setlist[enumerate,2]{leftmargin=0.5cm}
setlist[enumerate,3]{leftmargin=0.5cm}



usepackage{tcolorbox}
colorlet{notecolor}{gray!25}

newenvironment{note}%
{begin{tcolorbox}[colframe=notecolor,width=0.94textwidth,left=1pt,right=1pt] Note: }%
{end{tcolorbox}}


begin{document}

frontmatter

mainmatter

chapter{This is a chapter heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

section{Section Heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.


subsection{Subsection Heading}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

begin{itemize}

item first item

item second item

begin{itemize}

item first nested

item second nested

end{itemize}

item third item

end{itemize}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

subsection{This is the second subsection}

This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

begin{note}

This is a note and below some bullets

begin{itemize}

item first item

item second item

begin{itemize}

item first nested

item second nested

end{itemize}

item third item

end{itemize}

end{note}


This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output. This is a block of normal text long enough to wrap a couple of times in the output.

end{document}






indentation parskip bullets






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 2 hours ago









AgileProAgilePro

4601413




4601413













  • Another (simpler?) possibility would be to make the chapter and section title start in the left margin. This is not hard to do with package titlesec.

    – Bernard
    2 hours ago



















  • Another (simpler?) possibility would be to make the chapter and section title start in the left margin. This is not hard to do with package titlesec.

    – Bernard
    2 hours ago

















Another (simpler?) possibility would be to make the chapter and section title start in the left margin. This is not hard to do with package titlesec.

– Bernard
2 hours ago





Another (simpler?) possibility would be to make the chapter and section title start in the left margin. This is not hard to do with package titlesec.

– Bernard
2 hours ago










0






active

oldest

votes











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%2f470628%2fhow-to-layout-left-margin-and-bullets-using-parskip%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















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%2f470628%2fhow-to-layout-left-margin-and-bullets-using-parskip%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

Lallio

Futebolista

Jornalista