Drawing horizontal line through center of pageDrawing horizontal line same width as the page widthHorizontal line through table cellCenter hrule in the middle of the pageHorizontal line next to section headingDrawing footnote separator lineCenter align after horizontal line inside an align environment?Draw a horizontal line in latexCenter text between double horizontal rulesProblem drawing horizontal line above two columns, line runs through columnSpan vertical line through page with minipage
Extreme, but not acceptable situation and I can't start the work tomorrow morning
What is the offset in a seaplane's hull?
Why doesn't a const reference extend the life of a temporary object passed via a function?
Copycat chess is back
How to deal with fear of taking dependencies
Why do UK politicians seemingly ignore opinion polls on Brexit?
What does 'script /dev/null' do?
"listening to me about as much as you're listening to this pole here"
Shall I use personal or official e-mail account when registering to external websites for work purpose?
Calculate Levenshtein distance between two strings in Python
How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)
Can a planet have a different gravitational pull depending on its location in orbit around its sun?
How to create a consistant feel for character names in a fantasy setting?
How to make payment on the internet without leaving a money trail?
Why is the design of haulage companies so “special”?
Need help identifying/translating a plaque in Tangier, Morocco
What is GPS' 19 year rollover and does it present a cybersecurity issue?
Finding files for which a command fails
Could a US political party gain complete control over the government by removing checks & balances?
Is there a familial term for apples and pears?
Email Account under attack (really) - anything I can do?
Information to fellow intern about hiring?
Can I find out the caloric content of bread by dehydrating it?
Domain expired, GoDaddy holds it and is asking more money
Drawing horizontal line through center of page
Drawing horizontal line same width as the page widthHorizontal line through table cellCenter hrule in the middle of the pageHorizontal line next to section headingDrawing footnote separator lineCenter align after horizontal line inside an align environment?Draw a horizontal line in latexCenter text between double horizontal rulesProblem drawing horizontal line above two columns, line runs through columnSpan vertical line through page with minipage
Is it possible to draw a horizontal line through the center of the page (such as with hrule) regardless of the content of a page.
formatting rules
New contributor
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Is it possible to draw a horizontal line through the center of the page (such as with hrule) regardless of the content of a page.
formatting rules
New contributor
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Is it possible to draw a horizontal line through the center of the page (such as with hrule) regardless of the content of a page.
formatting rules
New contributor
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Is it possible to draw a horizontal line through the center of the page (such as with hrule) regardless of the content of a page.
formatting rules
formatting rules
New contributor
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 hours ago
maelstromscientistmaelstromscientist
31
31
New contributor
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
maelstromscientist is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The following code could be a way...
documentclassarticle
usepackagetikz
begindocument
tikz[overlay,remember picture]
draw (current page.west) -- (current page.east);
enddocument

1
AFAIK, thepositioninglibrary is not needed for that. :)
– frougon
2 hours ago
You are right. I'll edit my post. Thanks.
– Marian G.
2 hours ago
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
);
);
maelstromscientist 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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2f483833%2fdrawing-horizontal-line-through-center-of-page%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
The following code could be a way...
documentclassarticle
usepackagetikz
begindocument
tikz[overlay,remember picture]
draw (current page.west) -- (current page.east);
enddocument

1
AFAIK, thepositioninglibrary is not needed for that. :)
– frougon
2 hours ago
You are right. I'll edit my post. Thanks.
– Marian G.
2 hours ago
add a comment |
The following code could be a way...
documentclassarticle
usepackagetikz
begindocument
tikz[overlay,remember picture]
draw (current page.west) -- (current page.east);
enddocument

1
AFAIK, thepositioninglibrary is not needed for that. :)
– frougon
2 hours ago
You are right. I'll edit my post. Thanks.
– Marian G.
2 hours ago
add a comment |
The following code could be a way...
documentclassarticle
usepackagetikz
begindocument
tikz[overlay,remember picture]
draw (current page.west) -- (current page.east);
enddocument

The following code could be a way...
documentclassarticle
usepackagetikz
begindocument
tikz[overlay,remember picture]
draw (current page.west) -- (current page.east);
enddocument

edited 2 hours ago
answered 2 hours ago
Marian G.Marian G.
4471210
4471210
1
AFAIK, thepositioninglibrary is not needed for that. :)
– frougon
2 hours ago
You are right. I'll edit my post. Thanks.
– Marian G.
2 hours ago
add a comment |
1
AFAIK, thepositioninglibrary is not needed for that. :)
– frougon
2 hours ago
You are right. I'll edit my post. Thanks.
– Marian G.
2 hours ago
1
1
AFAIK, the
positioning library is not needed for that. :)– frougon
2 hours ago
AFAIK, the
positioning library is not needed for that. :)– frougon
2 hours ago
You are right. I'll edit my post. Thanks.
– Marian G.
2 hours ago
You are right. I'll edit my post. Thanks.
– Marian G.
2 hours ago
add a comment |
maelstromscientist is a new contributor. Be nice, and check out our Code of Conduct.
maelstromscientist is a new contributor. Be nice, and check out our Code of Conduct.
maelstromscientist is a new contributor. Be nice, and check out our Code of Conduct.
maelstromscientist 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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2f483833%2fdrawing-horizontal-line-through-center-of-page%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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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