Changing Scene to Aria
up vote
1
down vote
favorite
I am using the dramatist
package for a libretto. I want to replace the word of the scene
command with the word Aria. So, every time I place a scene
command I would get the word Aria with a number. Any help would be appreciated.
dramatist
New contributor
add a comment |
up vote
1
down vote
favorite
I am using the dramatist
package for a libretto. I want to replace the word of the scene
command with the word Aria. So, every time I place a scene
command I would get the word Aria with a number. Any help would be appreciated.
dramatist
New contributor
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
19 hours ago
dramatist
is quite a specialized package and you'll not find many people accustomed to it. A small example of code will definitely help in finding a good solution.
– egreg
14 hours ago
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am using the dramatist
package for a libretto. I want to replace the word of the scene
command with the word Aria. So, every time I place a scene
command I would get the word Aria with a number. Any help would be appreciated.
dramatist
New contributor
I am using the dramatist
package for a libretto. I want to replace the word of the scene
command with the word Aria. So, every time I place a scene
command I would get the word Aria with a number. Any help would be appreciated.
dramatist
dramatist
New contributor
New contributor
edited 18 hours ago
Kurt
34k846156
34k846156
New contributor
asked 19 hours ago
Jerry Giraffe
61
61
New contributor
New contributor
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
19 hours ago
dramatist
is quite a specialized package and you'll not find many people accustomed to it. A small example of code will definitely help in finding a good solution.
– egreg
14 hours ago
add a comment |
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
19 hours ago
dramatist
is quite a specialized package and you'll not find many people accustomed to it. A small example of code will definitely help in finding a good solution.
– egreg
14 hours ago
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
19 hours ago
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
19 hours ago
dramatist
is quite a specialized package and you'll not find many people accustomed to it. A small example of code will definitely help in finding a good solution.– egreg
14 hours ago
dramatist
is quite a specialized package and you'll not find many people accustomed to it. A small example of code will definitely help in finding a good solution.– egreg
14 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
Well, you gave no MWE so I had to guess a little bit.
In the documentation of package dramatist
(type texdoc dramatist
on your terminal/console) you can see that scene
uses scenename
you can simply rename with
renewcommand{scenename}{Aria} % <=====================================
So the following code
documentclass{article}
usepackage{dramatist}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
%% This will print the name of the speaking actor in boldface
renewcommand{speaksfont}{bfseries}
renewcommand{scenename}{Aria} % <=====================================
begin{document}
Character[Wilheim - a person]{Wilheim}{will} % define characters
scene
begin{drama}
willspeaks Vivamus varius tellus et mi pretium elementum iaculis tellus semper. Donec semper iaculis ante,
convallis convallis arcu laoreet vitae. Aliquam id leo ac eros ultrices rhoncus porta sed ipsum.
end{drama}
end{document}
gives you:
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Well, you gave no MWE so I had to guess a little bit.
In the documentation of package dramatist
(type texdoc dramatist
on your terminal/console) you can see that scene
uses scenename
you can simply rename with
renewcommand{scenename}{Aria} % <=====================================
So the following code
documentclass{article}
usepackage{dramatist}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
%% This will print the name of the speaking actor in boldface
renewcommand{speaksfont}{bfseries}
renewcommand{scenename}{Aria} % <=====================================
begin{document}
Character[Wilheim - a person]{Wilheim}{will} % define characters
scene
begin{drama}
willspeaks Vivamus varius tellus et mi pretium elementum iaculis tellus semper. Donec semper iaculis ante,
convallis convallis arcu laoreet vitae. Aliquam id leo ac eros ultrices rhoncus porta sed ipsum.
end{drama}
end{document}
gives you:
add a comment |
up vote
1
down vote
Well, you gave no MWE so I had to guess a little bit.
In the documentation of package dramatist
(type texdoc dramatist
on your terminal/console) you can see that scene
uses scenename
you can simply rename with
renewcommand{scenename}{Aria} % <=====================================
So the following code
documentclass{article}
usepackage{dramatist}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
%% This will print the name of the speaking actor in boldface
renewcommand{speaksfont}{bfseries}
renewcommand{scenename}{Aria} % <=====================================
begin{document}
Character[Wilheim - a person]{Wilheim}{will} % define characters
scene
begin{drama}
willspeaks Vivamus varius tellus et mi pretium elementum iaculis tellus semper. Donec semper iaculis ante,
convallis convallis arcu laoreet vitae. Aliquam id leo ac eros ultrices rhoncus porta sed ipsum.
end{drama}
end{document}
gives you:
add a comment |
up vote
1
down vote
up vote
1
down vote
Well, you gave no MWE so I had to guess a little bit.
In the documentation of package dramatist
(type texdoc dramatist
on your terminal/console) you can see that scene
uses scenename
you can simply rename with
renewcommand{scenename}{Aria} % <=====================================
So the following code
documentclass{article}
usepackage{dramatist}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
%% This will print the name of the speaking actor in boldface
renewcommand{speaksfont}{bfseries}
renewcommand{scenename}{Aria} % <=====================================
begin{document}
Character[Wilheim - a person]{Wilheim}{will} % define characters
scene
begin{drama}
willspeaks Vivamus varius tellus et mi pretium elementum iaculis tellus semper. Donec semper iaculis ante,
convallis convallis arcu laoreet vitae. Aliquam id leo ac eros ultrices rhoncus porta sed ipsum.
end{drama}
end{document}
gives you:
Well, you gave no MWE so I had to guess a little bit.
In the documentation of package dramatist
(type texdoc dramatist
on your terminal/console) you can see that scene
uses scenename
you can simply rename with
renewcommand{scenename}{Aria} % <=====================================
So the following code
documentclass{article}
usepackage{dramatist}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
%% This will print the name of the speaking actor in boldface
renewcommand{speaksfont}{bfseries}
renewcommand{scenename}{Aria} % <=====================================
begin{document}
Character[Wilheim - a person]{Wilheim}{will} % define characters
scene
begin{drama}
willspeaks Vivamus varius tellus et mi pretium elementum iaculis tellus semper. Donec semper iaculis ante,
convallis convallis arcu laoreet vitae. Aliquam id leo ac eros ultrices rhoncus porta sed ipsum.
end{drama}
end{document}
gives you:
answered 18 hours ago
Kurt
34k846156
34k846156
add a comment |
add a comment |
Jerry Giraffe is a new contributor. Be nice, and check out our Code of Conduct.
Jerry Giraffe is a new contributor. Be nice, and check out our Code of Conduct.
Jerry Giraffe is a new contributor. Be nice, and check out our Code of Conduct.
Jerry Giraffe 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%2f461672%2fchanging-scene-to-aria%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
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
19 hours ago
dramatist
is quite a specialized package and you'll not find many people accustomed to it. A small example of code will definitely help in finding a good solution.– egreg
14 hours ago