Greasemonkey addon을 설치하고 아래 주어진 스크립트를 사용하십시오.
http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/ 에서 찾은 스크립트를 수정했습니다 .
마지막에 "screen"을 "print"로 변경했습니다 (jQuery에 대해 전혀 몰라서 질문하지 마십시오). 실제로 화면 버전을 프린터로 보냅니다. PDF로 인쇄 할 때 (Foxit 또는 Nitro Pdf 프린터 사용) 가로 모드에서 페이지 유형을 Tabloid Extra로 설정하여 pdf 크기가 화면 크기와 다소 일치하도록합니다. 즐겨! 프로그래밍에 대해 아무것도 몰라서 크레딧은 원저자에게갑니다.
// ==UserScript==
// @name Show print version (A Cross Browser Example) (showPrintVersion.user.js)
// @namespace netsi
// @match http://*/*
// @author Sten Hougaard
// @description Simply add #print to the URL. As descriped in my blog post (goo.gl/MEizV) this will activate any media=print stylesheets so that you can see the print version without printing
// ==/UserScript==
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js");
script.addEventListener('load', function () {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
// the guts of this userscript
function main() {
var bPrint = (window.location.toString().indexOf('#print')!=-1);
if (bPrint) {
// The user wants to print this page
jQuery('link[media*="screen"]').attr('media', 'all'); // Enable the screen styling for all media types, including screen.
jQuery('link[media*="print"]').remove(); // remove any styling related to print
}
}
// load jQuery and execute the main function
addJQuery(main);
Delete This Node
합니다.