How do I change my LaTex document to follow some Word requirements?Setting a document in MS Word-12pt (12bp)Double or one-half spacingLatex commands for a specific page formatMaking a LaTeX document appear as though it were typeset in MS WordMake a LaTeX document look like it was written in Microsoft WordConfusion: onehalfspacing vs. spacing vs. Word vs. the world?Why the doublespacing command in LaTeX actually produce 1.6 times spacing? (Compared to Pages '09 4.2, 12pt, Times New Roman)Need help making sure a given thesis template is in line with my uni's style requirements (margin, spacing, font, etc)Layout for seminar paper; justified, font, size, spacingHow similar output do mathptmx and Times New Roman create?Margins reverse left and righthelp with font for my phd thesis
How can I ping multiple IP addresses at the same time?
What is the meaning of "понаехать"?
Warnings using NDSolve on wave PDE. "Using maximum number of grid points" , "Warning: scaled local spatial error estimate"
Is the specular reflection on a polished gold sphere white or gold in colour?
Greeting with "Ho"
King or Queen-Which piece is which?
Dmesg full of I/O errors, smart ok, four disks affected
"What is the maximum that Player 1 can win?"
What happened to Hopper's girlfriend in season one?
Why does Linux list NVMe drives as /dev/nvme0 instead of /dev/sda?
Rejecting an offer after accepting it just 10 days from date of joining
Explain why a line can never intersect a plane in exactly two points.
Print one file per line using echo
How do I remove this inheritance-related code smell?
How to work with PETG? Settings, caveats, etc
Do I have to explain the mechanical superiority of the player-character within the fiction of the game?
Am I legally required to provide a (GPL licensed) source code even after a project is abandoned?
How hard is it to distinguish if I am given remote access to a virtual machine vs a piece of hardware?
How many people are necessary to maintain modern civilisation?
Methodology: Writing unit tests for another developer
Has a life raft ever been successfully deployed on a modern commercial flight?
Should I include an appendix for inessential, yet related worldbuilding to my story?
How does DC work with natural 20?
Is there a name for the trope when there is a moments dialogue when someone pauses just before they leave the room?
How do I change my LaTex document to follow some Word requirements?
Setting a document in MS Word-12pt (12bp)Double or one-half spacingLatex commands for a specific page formatMaking a LaTeX document appear as though it were typeset in MS WordMake a LaTeX document look like it was written in Microsoft WordConfusion: onehalfspacing vs. spacing vs. Word vs. the world?Why the doublespacing command in LaTeX actually produce 1.6 times spacing? (Compared to Pages '09 4.2, 12pt, Times New Roman)Need help making sure a given thesis template is in line with my uni's style requirements (margin, spacing, font, etc)Layout for seminar paper; justified, font, size, spacingHow similar output do mathptmx and Times New Roman create?Margins reverse left and righthelp with font for my phd thesis
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am writing my thesis in LaTex and I am strictly required to write:
- With Times New Roman
- 12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
- One and a half line spacing
- All the four margins (left, right, up and down) need to be of 2.5 cm
Can you help me with these four commands to add to my thesis?
fonts spacing margins line-spacing dimensions
New contributor
add a comment |
I am writing my thesis in LaTex and I am strictly required to write:
- With Times New Roman
- 12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
- One and a half line spacing
- All the four margins (left, right, up and down) need to be of 2.5 cm
Can you help me with these four commands to add to my thesis?
fonts spacing margins line-spacing dimensions
New contributor
At my university, they had their own .sty file that I had to use. Does that exist for your university?
– Durkee
Jun 11 at 18:55
3)= baselineskip=28pt %or similar in the body of the document 4)= usepackagefullpage
– KJO
Jun 11 at 20:42
add a comment |
I am writing my thesis in LaTex and I am strictly required to write:
- With Times New Roman
- 12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
- One and a half line spacing
- All the four margins (left, right, up and down) need to be of 2.5 cm
Can you help me with these four commands to add to my thesis?
fonts spacing margins line-spacing dimensions
New contributor
I am writing my thesis in LaTex and I am strictly required to write:
- With Times New Roman
- 12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
- One and a half line spacing
- All the four margins (left, right, up and down) need to be of 2.5 cm
Can you help me with these four commands to add to my thesis?
fonts spacing margins line-spacing dimensions
fonts spacing margins line-spacing dimensions
New contributor
New contributor
New contributor
asked Jun 11 at 7:53
user190786user190786
411
411
New contributor
New contributor
At my university, they had their own .sty file that I had to use. Does that exist for your university?
– Durkee
Jun 11 at 18:55
3)= baselineskip=28pt %or similar in the body of the document 4)= usepackagefullpage
– KJO
Jun 11 at 20:42
add a comment |
At my university, they had their own .sty file that I had to use. Does that exist for your university?
– Durkee
Jun 11 at 18:55
3)= baselineskip=28pt %or similar in the body of the document 4)= usepackagefullpage
– KJO
Jun 11 at 20:42
At my university, they had their own .sty file that I had to use. Does that exist for your university?
– Durkee
Jun 11 at 18:55
At my university, they had their own .sty file that I had to use. Does that exist for your university?
– Durkee
Jun 11 at 18:55
3)= baselineskip=28pt %or similar in the body of the document 4)= usepackagefullpage
– KJO
Jun 11 at 20:42
3)= baselineskip=28pt %or similar in the body of the document 4)= usepackagefullpage
– KJO
Jun 11 at 20:42
add a comment |
1 Answer
1
active
oldest
votes
With Times New Roman
With xelatex
or lualatex
you can use any .ttf or .otf font available in your system, and of course times. For pdflatex
or any other compiler there are also an obsolete times
package, that should be replaced by the mathptmx
package, which supports Times Roman text.
12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
Hardly anyone will notice this, but this is a duplicate of Setting a document in MS Word-12pt (12bp)
One and a half line spacing
... that is also different of Word spacing, but this is also a duplicate of Double or one-half spacing
All the four margins (left, right, up and down) need to be of 2.5 cm
Easy way:
usepackage[margin=2.5cm]geometry
These days I thinknewtxtext
/newtxmath
are the replacement formathptmx
.
– Alan Munn
Jun 11 at 21:34
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
);
);
user190786 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f495239%2fhow-do-i-change-my-latex-document-to-follow-some-word-requirements%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
With Times New Roman
With xelatex
or lualatex
you can use any .ttf or .otf font available in your system, and of course times. For pdflatex
or any other compiler there are also an obsolete times
package, that should be replaced by the mathptmx
package, which supports Times Roman text.
12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
Hardly anyone will notice this, but this is a duplicate of Setting a document in MS Word-12pt (12bp)
One and a half line spacing
... that is also different of Word spacing, but this is also a duplicate of Double or one-half spacing
All the four margins (left, right, up and down) need to be of 2.5 cm
Easy way:
usepackage[margin=2.5cm]geometry
These days I thinknewtxtext
/newtxmath
are the replacement formathptmx
.
– Alan Munn
Jun 11 at 21:34
add a comment |
With Times New Roman
With xelatex
or lualatex
you can use any .ttf or .otf font available in your system, and of course times. For pdflatex
or any other compiler there are also an obsolete times
package, that should be replaced by the mathptmx
package, which supports Times Roman text.
12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
Hardly anyone will notice this, but this is a duplicate of Setting a document in MS Word-12pt (12bp)
One and a half line spacing
... that is also different of Word spacing, but this is also a duplicate of Double or one-half spacing
All the four margins (left, right, up and down) need to be of 2.5 cm
Easy way:
usepackage[margin=2.5cm]geometry
These days I thinknewtxtext
/newtxmath
are the replacement formathptmx
.
– Alan Munn
Jun 11 at 21:34
add a comment |
With Times New Roman
With xelatex
or lualatex
you can use any .ttf or .otf font available in your system, and of course times. For pdflatex
or any other compiler there are also an obsolete times
package, that should be replaced by the mathptmx
package, which supports Times Roman text.
12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
Hardly anyone will notice this, but this is a duplicate of Setting a document in MS Word-12pt (12bp)
One and a half line spacing
... that is also different of Word spacing, but this is also a duplicate of Double or one-half spacing
All the four margins (left, right, up and down) need to be of 2.5 cm
Easy way:
usepackage[margin=2.5cm]geometry
With Times New Roman
With xelatex
or lualatex
you can use any .ttf or .otf font available in your system, and of course times. For pdflatex
or any other compiler there are also an obsolete times
package, that should be replaced by the mathptmx
package, which supports Times Roman text.
12 pt (which I have read 12pt in Word is different from 12pt in LaTex)
Hardly anyone will notice this, but this is a duplicate of Setting a document in MS Word-12pt (12bp)
One and a half line spacing
... that is also different of Word spacing, but this is also a duplicate of Double or one-half spacing
All the four margins (left, right, up and down) need to be of 2.5 cm
Easy way:
usepackage[margin=2.5cm]geometry
edited Jun 11 at 22:41
jarhill0
1133
1133
answered Jun 11 at 8:20
FranFran
55k6122188
55k6122188
These days I thinknewtxtext
/newtxmath
are the replacement formathptmx
.
– Alan Munn
Jun 11 at 21:34
add a comment |
These days I thinknewtxtext
/newtxmath
are the replacement formathptmx
.
– Alan Munn
Jun 11 at 21:34
These days I think
newtxtext
/newtxmath
are the replacement for mathptmx
.– Alan Munn
Jun 11 at 21:34
These days I think
newtxtext
/newtxmath
are the replacement for mathptmx
.– Alan Munn
Jun 11 at 21:34
add a comment |
user190786 is a new contributor. Be nice, and check out our Code of Conduct.
user190786 is a new contributor. Be nice, and check out our Code of Conduct.
user190786 is a new contributor. Be nice, and check out our Code of Conduct.
user190786 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f495239%2fhow-do-i-change-my-latex-document-to-follow-some-word-requirements%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
At my university, they had their own .sty file that I had to use. Does that exist for your university?
– Durkee
Jun 11 at 18:55
3)= baselineskip=28pt %or similar in the body of the document 4)= usepackagefullpage
– KJO
Jun 11 at 20:42