How to apply boldface or header formatting to a sentence with LaTeX expression inside?
So I'm trying to write up a document in Rstudio, and I have many sentences with in-line LaTeX expressions. Some of these sentences, I want to either boldface entirely, or make them into document headers. When I do this, I can only get the normal text to format into boldface, but the LaTeX does not change (it renders, but does not boldface along with the normal text).
A second, but related question--if I want to create ordered lists, or just indent a line with a LaTeX expression and have it in boldface, is it possible to do this?
For example:
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
###(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
In both examples, the text "Prove that" correctly goes bold, but the rest does not. Any advice on the easiest way to get the whole sentence into a consistent look?
For the second case, suppose I want to indent the line and/or I want to have two lines, with the second being part of a list connected to the first. Is is possible to boldface either of these cases for the entire line, including the LaTex expression.
For the second case:
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Thanks for any tips.
latex markdown r-markdown tex
add a comment |
So I'm trying to write up a document in Rstudio, and I have many sentences with in-line LaTeX expressions. Some of these sentences, I want to either boldface entirely, or make them into document headers. When I do this, I can only get the normal text to format into boldface, but the LaTeX does not change (it renders, but does not boldface along with the normal text).
A second, but related question--if I want to create ordered lists, or just indent a line with a LaTeX expression and have it in boldface, is it possible to do this?
For example:
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
###(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
In both examples, the text "Prove that" correctly goes bold, but the rest does not. Any advice on the easiest way to get the whole sentence into a consistent look?
For the second case, suppose I want to indent the line and/or I want to have two lines, with the second being part of a list connected to the first. Is is possible to boldface either of these cases for the entire line, including the LaTex expression.
For the second case:
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Thanks for any tips.
latex markdown r-markdown tex
add a comment |
So I'm trying to write up a document in Rstudio, and I have many sentences with in-line LaTeX expressions. Some of these sentences, I want to either boldface entirely, or make them into document headers. When I do this, I can only get the normal text to format into boldface, but the LaTeX does not change (it renders, but does not boldface along with the normal text).
A second, but related question--if I want to create ordered lists, or just indent a line with a LaTeX expression and have it in boldface, is it possible to do this?
For example:
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
###(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
In both examples, the text "Prove that" correctly goes bold, but the rest does not. Any advice on the easiest way to get the whole sentence into a consistent look?
For the second case, suppose I want to indent the line and/or I want to have two lines, with the second being part of a list connected to the first. Is is possible to boldface either of these cases for the entire line, including the LaTex expression.
For the second case:
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Thanks for any tips.
latex markdown r-markdown tex
So I'm trying to write up a document in Rstudio, and I have many sentences with in-line LaTeX expressions. Some of these sentences, I want to either boldface entirely, or make them into document headers. When I do this, I can only get the normal text to format into boldface, but the LaTeX does not change (it renders, but does not boldface along with the normal text).
A second, but related question--if I want to create ordered lists, or just indent a line with a LaTeX expression and have it in boldface, is it possible to do this?
For example:
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
###(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
In both examples, the text "Prove that" correctly goes bold, but the rest does not. Any advice on the easiest way to get the whole sentence into a consistent look?
For the second case, suppose I want to indent the line and/or I want to have two lines, with the second being part of a list connected to the first. Is is possible to boldface either of these cases for the entire line, including the LaTex expression.
For the second case:
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Thanks for any tips.
latex markdown r-markdown tex
latex markdown r-markdown tex
asked Nov 22 '18 at 10:15
anguyen1210anguyen1210
175
175
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can add some code that automatically switches on boldmath
once bfseries
is used, c.f. https://tex.stackexchange.com/a/124311/140850:
---
output: pdf_document
---
makeatletter
g@addto@macrobfseries{boldmath}
makeatother
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
### (a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Output:
Of course it would be better to add that code to some tex
file that is included.
Re:@RalfStubner--Thanks, that worked! For anyone that is interested, after adding the three lines of suggested code, I was also able to get the ordered list and sub-list point all in bold by using using the '*' and '+' characters to denote the list as normal, followed by one space after each symbol and then the double '**' around the sentence to make it bold.
– anguyen1210
Nov 22 '18 at 19:32
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f53428615%2fhow-to-apply-boldface-or-header-formatting-to-a-sentence-with-latex-expression-i%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
You can add some code that automatically switches on boldmath
once bfseries
is used, c.f. https://tex.stackexchange.com/a/124311/140850:
---
output: pdf_document
---
makeatletter
g@addto@macrobfseries{boldmath}
makeatother
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
### (a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Output:
Of course it would be better to add that code to some tex
file that is included.
Re:@RalfStubner--Thanks, that worked! For anyone that is interested, after adding the three lines of suggested code, I was also able to get the ordered list and sub-list point all in bold by using using the '*' and '+' characters to denote the list as normal, followed by one space after each symbol and then the double '**' around the sentence to make it bold.
– anguyen1210
Nov 22 '18 at 19:32
add a comment |
You can add some code that automatically switches on boldmath
once bfseries
is used, c.f. https://tex.stackexchange.com/a/124311/140850:
---
output: pdf_document
---
makeatletter
g@addto@macrobfseries{boldmath}
makeatother
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
### (a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Output:
Of course it would be better to add that code to some tex
file that is included.
Re:@RalfStubner--Thanks, that worked! For anyone that is interested, after adding the three lines of suggested code, I was also able to get the ordered list and sub-list point all in bold by using using the '*' and '+' characters to denote the list as normal, followed by one space after each symbol and then the double '**' around the sentence to make it bold.
– anguyen1210
Nov 22 '18 at 19:32
add a comment |
You can add some code that automatically switches on boldmath
once bfseries
is used, c.f. https://tex.stackexchange.com/a/124311/140850:
---
output: pdf_document
---
makeatletter
g@addto@macrobfseries{boldmath}
makeatother
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
### (a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Output:
Of course it would be better to add that code to some tex
file that is included.
You can add some code that automatically switches on boldmath
once bfseries
is used, c.f. https://tex.stackexchange.com/a/124311/140850:
---
output: pdf_document
---
makeatletter
g@addto@macrobfseries{boldmath}
makeatother
**(a) Prove that $E(b_R) = beta_1 + Pbeta_2$.**
### (a) Prove that $E(b_R) = beta_1 + Pbeta_2$.
**(a) How to indent this line, and boldface everything: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
***(a) How can I make this an un-ordered list, all boldface: Prove that $E(b_R) = beta_1 + Pbeta_2$.**
**+(a) Can this line be a subpoint to the first, in all boldface? Prove that $E(b_R) = beta_1 + Pbeta_2$.**
Output:
Of course it would be better to add that code to some tex
file that is included.
edited Nov 22 '18 at 11:17
answered Nov 22 '18 at 10:30
Ralf StubnerRalf Stubner
13.9k21437
13.9k21437
Re:@RalfStubner--Thanks, that worked! For anyone that is interested, after adding the three lines of suggested code, I was also able to get the ordered list and sub-list point all in bold by using using the '*' and '+' characters to denote the list as normal, followed by one space after each symbol and then the double '**' around the sentence to make it bold.
– anguyen1210
Nov 22 '18 at 19:32
add a comment |
Re:@RalfStubner--Thanks, that worked! For anyone that is interested, after adding the three lines of suggested code, I was also able to get the ordered list and sub-list point all in bold by using using the '*' and '+' characters to denote the list as normal, followed by one space after each symbol and then the double '**' around the sentence to make it bold.
– anguyen1210
Nov 22 '18 at 19:32
Re:@RalfStubner--Thanks, that worked! For anyone that is interested, after adding the three lines of suggested code, I was also able to get the ordered list and sub-list point all in bold by using using the '*' and '+' characters to denote the list as normal, followed by one space after each symbol and then the double '**' around the sentence to make it bold.
– anguyen1210
Nov 22 '18 at 19:32
Re:@RalfStubner--Thanks, that worked! For anyone that is interested, after adding the three lines of suggested code, I was also able to get the ordered list and sub-list point all in bold by using using the '*' and '+' characters to denote the list as normal, followed by one space after each symbol and then the double '**' around the sentence to make it bold.
– anguyen1210
Nov 22 '18 at 19:32
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f53428615%2fhow-to-apply-boldface-or-header-formatting-to-a-sentence-with-latex-expression-i%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