{"id":8296,"date":"2026-05-11T19:54:13","date_gmt":"2026-05-11T23:54:13","guid":{"rendered":"https:\/\/montrealtips.com\/tip-tax-calculator\/"},"modified":"2026-05-11T20:25:34","modified_gmt":"2026-05-12T00:25:34","slug":"tip-tax-calculator","status":"publish","type":"page","link":"https:\/\/montrealtips.com\/fr\/tip-tax-calculator\/","title":{"rendered":"Calculateur de pourboires et de taxes du Qu\u00e9bec (TPS + TVQ) \u2014 Partagez l&#039;addition d&#039;un restaurant en quelques secondes"},"content":{"rendered":"\n<div class=\"mtl-tool\" id=\"mtl-tip\"><style>.mtl-tool{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,sans-serif;color:#1a1a1a;max-width:760px;margin:24px auto;line-height:1.55}.mtl-tool .mtl-card{background:#f7f9fc;border:1px solid #e3e8ef;border-radius:14px;padding:24px 26px}.mtl-tool h2.mtl-h{margin:0 0 6px;font-size:22px;color:#0b1f3a}.mtl-tool .mtl-sub{margin:0 0 18px;color:#475569;font-size:14px}.mtl-tool label{display:block;font-weight:600;margin:14px 0 6px;font-size:14px;color:#0b1f3a}.mtl-tool input,.mtl-tool select{width:100%;padding:10px 12px;border:1px solid #cbd5e1;border-radius:8px;font-size:15px;background:#fff;box-sizing:border-box}.mtl-tool .mtl-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}.mtl-tool .mtl-tips{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;margin-top:6px}.mtl-tool .mtl-tips button{padding:8px;border:1px solid #cbd5e1;background:#fff;border-radius:6px;cursor:pointer;font-weight:600;font-size:13px}.mtl-tool .mtl-tips button.active{background:#d8232a;color:#fff;border-color:#d8232a}.mtl-tool .mtl-result{margin-top:18px;padding:18px;background:#fff;border-left:4px solid #d8232a;border-radius:8px}.mtl-tool .mtl-result h3{margin:0 0 12px;color:#0b1f3a;font-size:18px}.mtl-tool .mtl-line{display:flex;justify-content:space-between;padding:6px 0;border-bottom:1px solid #eef2f7;font-size:15px}.mtl-tool .mtl-line:last-child{border:0}.mtl-tool .mtl-total{font-weight:800;font-size:22px;color:#d8232a;border-top:2px solid #d8232a!important;padding-top:10px!important;margin-top:6px}@media(max-width:520px){.mtl-tool .mtl-row{grid-template-columns:1fr}.mtl-tool .mtl-tips{grid-template-columns:repeat(2,1fr)}}<\/style><div class=\"mtl-card\"><h2 class=\"mtl-h\">&#x1f9fe; Quebec Tip &#038; Tax Calculator<\/h2><p class=\"mtl-sub\">Adds GST (5%) + QST (9.975%) on the pre-tax amount, calculates tip on the pre-tax amount (the standard in Quebec), and splits the bill.<\/p><label>Pre-tax bill amount ($)<\/label><input type=\"number\" id=\"mtl-tip-amount\" min=\"0\" step=\"0.01\" value=\"50.00\"><label>Tip % (on pre-tax \u2014 Quebec norm)<\/label><div class=\"mtl-tips\"><button type=\"button\" data-t=\"10\">10%<\/button><button type=\"button\" data-t=\"15\" class=\"active\">15%<\/button><button type=\"button\" data-t=\"18\">18%<\/button><button type=\"button\" data-t=\"20\">20%<\/button><\/div><input type=\"number\" id=\"mtl-tip-pct\" min=\"0\" max=\"100\" step=\"0.5\" value=\"15\" style=\"margin-top:10px\"><div class=\"mtl-row\" style=\"margin-top:6px\"><div><label>Split between<\/label><input type=\"number\" id=\"mtl-tip-people\" min=\"1\" max=\"50\" value=\"1\"><\/div><div><label>Tip on pre-tax or post-tax?<\/label><select id=\"mtl-tip-base\"><option value=\"pre\" selected>Pre-tax (recommended)<\/option><option value=\"post\">Post-tax<\/option><\/select><\/div><\/div><div class=\"mtl-result\"><h3>Bill breakdown<\/h3><div class=\"mtl-line\"><span>Pre-tax<\/span><span id=\"mtl-r-pre\">$0.00<\/span><\/div><div class=\"mtl-line\"><span>GST (5%)<\/span><span id=\"mtl-r-gst\">$0.00<\/span><\/div><div class=\"mtl-line\"><span>QST (9.975%)<\/span><span id=\"mtl-r-qst\">$0.00<\/span><\/div><div class=\"mtl-line\"><span>Tip (<span id=\"mtl-r-tippct\">15<\/span>%)<\/span><span id=\"mtl-r-tip\">$0.00<\/span><\/div><div class=\"mtl-line mtl-total\"><span>Total<\/span><span id=\"mtl-r-total\">$0.00<\/span><\/div><div class=\"mtl-line\" id=\"mtl-r-perline\" style=\"display:none\"><span>Each person pays<\/span><span id=\"mtl-r-per\">$0.00<\/span><\/div><\/div><\/div><script>(function(){var GST=0.05,QST=0.09975;var amountEl=document.getElementById('mtl-tip-amount');var pctEl=document.getElementById('mtl-tip-pct');var peopleEl=document.getElementById('mtl-tip-people');var baseEl=document.getElementById('mtl-tip-base');var buttons=document.querySelectorAll('.mtl-tips button');function update(){var amt=parseFloat(amountEl.value)||0;var pct=parseFloat(pctEl.value)||0;var people=parseInt(peopleEl.value)||1;var gst=amt*GST,qst=amt*QST;var tipBase=baseEl.value==='pre'?amt:amt+gst+qst;var tip=tipBase*pct\/100;var total=amt+gst+qst+tip;document.getElementById('mtl-r-pre').textContent='$'+amt.toFixed(2);document.getElementById('mtl-r-gst').textContent='$'+gst.toFixed(2);document.getElementById('mtl-r-qst').textContent='$'+qst.toFixed(2);document.getElementById('mtl-r-tippct').textContent=pct;document.getElementById('mtl-r-tip').textContent='$'+tip.toFixed(2);document.getElementById('mtl-r-total').textContent='$'+total.toFixed(2);if(people>1){document.getElementById('mtl-r-per').textContent='$'+(total\/people).toFixed(2);document.getElementById('mtl-r-perline').style.display='flex';}else{document.getElementById('mtl-r-perline').style.display='none';}}[amountEl,pctEl,peopleEl,baseEl].forEach(function(el){el.addEventListener('input',update);el.addEventListener('change',update);});buttons.forEach(function(b){b.addEventListener('click',function(){buttons.forEach(function(x){x.classList.remove('active');});b.classList.add('active');pctEl.value=b.dataset.t;update();});});update();})();<\/script><\/div><h2>How tipping and tax actually work in Quebec restaurants<\/h2><p><strong>Quick answer:<\/strong> In Quebec restaurants you pay <strong>GST 5% + QST 9.975%<\/strong> on top of the pre-tax bill, then add a tip of <strong>15\u201320%<\/strong>. Locals tip on the <strong>pre-tax<\/strong> amount, but the payment terminal will default to the post-tax total \u2014 meaning you tip 15% more than you may realize. Always check.<\/p><h3>The Quebec tax stack \u2014 what&#8217;s actually added<\/h3><table style=\"width:100%;border-collapse:collapse;margin:14px 0\"><thead><tr style=\"background:#f1f5f9\"><th style=\"padding:8px;text-align:left;border:1px solid #e2e8f0\">Item<\/th><th style=\"padding:8px;text-align:left;border:1px solid #e2e8f0\">Rate<\/th><th style=\"padding:8px;text-align:left;border:1px solid #e2e8f0\">Applied to<\/th><\/tr><\/thead><tbody><tr><td style=\"padding:8px;border:1px solid #e2e8f0\">GST (TPS)<\/td><td style=\"padding:8px;border:1px solid #e2e8f0\">5%<\/td><td style=\"padding:8px;border:1px solid #e2e8f0\">Pre-tax amount<\/td><\/tr><tr><td style=\"padding:8px;border:1px solid #e2e8f0\">QST (TVQ)<\/td><td style=\"padding:8px;border:1px solid #e2e8f0\">9.975%<\/td><td style=\"padding:8px;border:1px solid #e2e8f0\">Pre-tax amount (not on GST)<\/td><\/tr><tr><td style=\"padding:8px;border:1px solid #e2e8f0\">Combined sales tax<\/td><td style=\"padding:8px;border:1px solid #e2e8f0\">14.975%<\/td><td style=\"padding:8px;border:1px solid #e2e8f0\">Effective rate<\/td><\/tr><tr><td style=\"padding:8px;border:1px solid #e2e8f0\">Tip (suggested)<\/td><td style=\"padding:8px;border:1px solid #e2e8f0\">15\u201320%<\/td><td style=\"padding:8px;border:1px solid #e2e8f0\">Pre-tax amount (Quebec norm)<\/td><\/tr><\/tbody><\/table><h3>Quick mental shortcut Montrealers use<\/h3><p>To estimate a 15% tip: <strong>double the GST<\/strong> and you&#8217;re at roughly 10%, then add half again for 15%. Example: a $50 bill has $2.50 GST \u2192 tip is $5.00 (10%) \u2192 $7.50 (15%). Quick and close enough for the table.<\/p><h3>When you can leave less than 15%<\/h3><p>Tipping in Quebec is customary but not mandatory. You can:<\/p><ul><li><strong>Tip 10% for fast-counter service<\/strong> (kebab shops, casse-cro\u00fbtes, take-out).<\/li><li><strong>Tip 0% or low<\/strong> for bad service \u2014 but adjust on the receipt directly so the terminal doesn&#8217;t auto-apply 18%.<\/li><li><strong>Tip $0 on a coffee<\/strong> \u2014 Quebec terminals often suggest 18% on a $4 latte. It&#8217;s not expected.<\/li><\/ul><h3>The &#8220;tip on tax&#8221; debate<\/h3><p>Many Quebec payment terminals default to calculating tip on the <strong>post-tax<\/strong> amount, which inflates the tip by ~15%. Servers don&#8217;t always know this. To tip the traditional Quebec way, manually enter the dollar tip or do the math on pre-tax. The calculator above does it for you.<\/p><h2>Quebec Tax &#038; Tip FAQ<\/h2><h3>What&#8217;s the total sales tax rate in Quebec?<\/h3><p>The combined Quebec sales tax is <strong>14.975%<\/strong> \u2014 that&#8217;s 5% GST (federal) + 9.975% QST (provincial). The two are calculated separately, both on the pre-tax amount, then added.<\/p><h3>Is QST charged on top of GST?<\/h3><p>No, not anymore. Since 2013, QST is calculated on the <strong>pre-GST<\/strong> amount, not on the total including GST. This makes the math simpler: 5% + 9.975% = 14.975% applied directly to the pre-tax subtotal.<\/p><h3>How much should I tip in Montreal?<\/h3><p>Standard tipping in Montreal restaurants is <strong>15% of the pre-tax bill<\/strong> for normal table service, 18% for very good service, and 20% for excellent service. For counter\/take-out: 0\u201310% is fine. Tip is included only in groups of 8+, when it appears as &#8220;service&#8221; on the bill.<\/p><h3>Do I have to tip in Quebec?<\/h3><p>Tipping is customary, not legally required. Servers in Quebec are paid a &#8220;tipped employee&#8221; minimum wage ($13.30\/hour as of 2026) lower than the standard minimum wage ($16.10\/hour), so tips are a significant part of their income. Not tipping for normal service is considered impolite.<\/p><h3>Are tips taxed in Quebec?<\/h3><p>Yes, all tips received by employees are taxable income in Quebec. Restaurant employers automatically report a portion of tips based on sales. The system is called &#8220;d\u00e9claration des pourboires.&#8221;<\/p><h3>Why does the payment terminal calculate tip on the post-tax amount?<\/h3><p>Most Canadian payment terminals default to calculating tip on the post-tax total because it&#8217;s simpler programming and slightly favours servers. You can change it: most terminals let you enter a custom percentage or a flat dollar amount instead of selecting a preset.<\/p><h3>Is alcohol taxed differently in Quebec?<\/h3><p>Alcohol carries the same GST + QST (14.975%) as food at restaurants. SAQ liquor store prices include tax. Bars often print tax-inclusive prices on the menu \u2014 check before assuming.<\/p><h2>Related Montreal tools<\/h2><ul><li><a href=\"\/stm-fare-calculator\/\">STM Fare Calculator<\/a><\/li><li><a href=\"\/moving-day-checklist\/\">July 1 Moving Day Checklist<\/a><\/li><li><a href=\"\/neighborhood-match-quiz\/\">Montreal Neighborhood Match Quiz<\/a><\/li><\/ul><p style=\"font-size:13px;color:#64748b;margin-top:30px\">Sources: Revenu Qu\u00e9bec QST rates, Canada Revenue Agency GST rates, CCQ wage rates. Last updated May 2026.<\/p><script type=\"application\/ld+json\">{\"@context\":\"https:\/\/schema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"What is the total sales tax rate in Quebec?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"The combined sales tax in Quebec is 14.975% \u2014 that is 5% GST (federal) plus 9.975% QST (provincial). Both are applied to the pre-tax amount and then added.\"}},{\"@type\":\"Question\",\"name\":\"Is QST charged on top of GST?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"No. Since 2013, Quebec sales tax (QST) is calculated on the pre-GST amount, not on the total including GST. The two taxes are simply added to the pre-tax subtotal.\"}},{\"@type\":\"Question\",\"name\":\"How much should I tip in Montreal?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Standard tipping in Montreal restaurants is 15% of the pre-tax bill for normal table service, 18% for very good service, and 20% for excellent service. Counter service and take-out is typically 0\u201310%.\"}},{\"@type\":\"Question\",\"name\":\"Do I have to tip in Quebec?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Tipping is customary but not legally required. Quebec servers earn a lower tipped minimum wage ($13.30\/hour in 2026 vs $16.10 standard), so tips are a significant portion of their income.\"}},{\"@type\":\"Question\",\"name\":\"Are tips taxed in Quebec?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Yes. Tips are taxable income in Quebec. Restaurant employers automatically declare a portion of tips based on sales under the provincial 'd\u00e9claration des pourboires' system.\"}},{\"@type\":\"Question\",\"name\":\"Why does the payment terminal calculate tip on the post-tax amount?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Most Canadian payment terminals default to calculating the tip on the post-tax total. You can override this by entering a custom percentage or a fixed dollar amount on the terminal.\"}}]}<\/script>\n","protected":false},"excerpt":{"rendered":"<p>&#x1f9fe; Quebec Tip &#038; Tax Calculator Adds GST (5%) + QST (9.975%) on the pre-tax amount, calculates tip on the pre-tax amount (the standard in Quebec), and splits the bill. Pre-tax bill amount ($)Tip % (on pre-tax \u2014 Quebec norm) 10%15%18%20% Split between Tip on pre-tax or post-tax?Pre-tax (recommended)Post-tax Bill breakdown Pre-tax$0.00 GST (5%)$0.00 QST [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-8296","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Quebec Tip &amp; Tax Calculator (GST + QST) \u2014 Split a Restaurant Bill in Seconds - Montreal Tips<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/montrealtips.com\/fr\/tip-tax-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Quebec Tip &amp; Tax Calculator (GST + QST) \u2014 Split a Restaurant Bill in Seconds - Montreal Tips\" \/>\n<meta property=\"og:description\" content=\"&#x1f9fe; Quebec Tip &#038; Tax Calculator Adds GST (5%) + QST (9.975%) on the pre-tax amount, calculates tip on the pre-tax amount (the standard in Quebec), and splits the bill. Pre-tax bill amount ($)Tip % (on pre-tax \u2014 Quebec norm) 10%15%18%20% Split between Tip on pre-tax or post-tax?Pre-tax (recommended)Post-tax Bill breakdown Pre-tax$0.00 GST (5%)$0.00 QST [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/montrealtips.com\/fr\/tip-tax-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Montreal Tips\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/mtltips\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-12T00:25:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/montrealtips.com\/wp-content\/uploads\/2017\/04\/Downtown-Church-Photo-From-Mont-Royal.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1869\" \/>\n\t<meta property=\"og:image:height\" content=\"1246\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@mtltips\" \/>\n<meta name=\"twitter:label1\" content=\"Estimation du temps de lecture\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/montrealtips.com\\\/tip-tax-calculator\\\/\",\"url\":\"https:\\\/\\\/montrealtips.com\\\/tip-tax-calculator\\\/\",\"name\":\"Quebec Tip & Tax Calculator (GST + QST) \u2014 Split a Restaurant Bill in Seconds - Montreal Tips\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/montrealtips.com\\\/#website\"},\"datePublished\":\"2026-05-11T23:54:13+00:00\",\"dateModified\":\"2026-05-12T00:25:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/montrealtips.com\\\/tip-tax-calculator\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/montrealtips.com\\\/tip-tax-calculator\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/montrealtips.com\\\/tip-tax-calculator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/montrealtips.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Quebec Tip &#038; Tax Calculator (GST + QST) \u2014 Split a Restaurant Bill in Seconds\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/montrealtips.com\\\/#website\",\"url\":\"https:\\\/\\\/montrealtips.com\\\/\",\"name\":\"Montreal Tips\",\"description\":\"Montreal Updates, Features and Articles\",\"publisher\":{\"@id\":\"https:\\\/\\\/montrealtips.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/montrealtips.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/montrealtips.com\\\/#organization\",\"name\":\"Montreal Tips\",\"url\":\"https:\\\/\\\/montrealtips.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/montrealtips.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/montrealtips.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/Untitled-2.jpg\",\"contentUrl\":\"https:\\\/\\\/montrealtips.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/Untitled-2.jpg\",\"width\":1206,\"height\":1084,\"caption\":\"Montreal Tips\"},\"image\":{\"@id\":\"https:\\\/\\\/montrealtips.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/mtltips\\\/\",\"https:\\\/\\\/x.com\\\/mtltips\",\"https:\\\/\\\/www.instagram.com\\\/mtltips\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/montreal-tips\\\/\",\"https:\\\/\\\/www.pinterest.ca\\\/mtltips\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Quebec Tip & Tax Calculator (GST + QST) \u2014 Split a Restaurant Bill in Seconds - Montreal Tips","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/montrealtips.com\/fr\/tip-tax-calculator\/","og_locale":"fr_CA","og_type":"article","og_title":"Quebec Tip & Tax Calculator (GST + QST) \u2014 Split a Restaurant Bill in Seconds - Montreal Tips","og_description":"&#x1f9fe; Quebec Tip &#038; Tax Calculator Adds GST (5%) + QST (9.975%) on the pre-tax amount, calculates tip on the pre-tax amount (the standard in Quebec), and splits the bill. Pre-tax bill amount ($)Tip % (on pre-tax \u2014 Quebec norm) 10%15%18%20% Split between Tip on pre-tax or post-tax?Pre-tax (recommended)Post-tax Bill breakdown Pre-tax$0.00 GST (5%)$0.00 QST [&hellip;]","og_url":"https:\/\/montrealtips.com\/fr\/tip-tax-calculator\/","og_site_name":"Montreal Tips","article_publisher":"https:\/\/www.facebook.com\/mtltips\/","article_modified_time":"2026-05-12T00:25:34+00:00","og_image":[{"width":1869,"height":1246,"url":"https:\/\/montrealtips.com\/wp-content\/uploads\/2017\/04\/Downtown-Church-Photo-From-Mont-Royal.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@mtltips","twitter_misc":{"Estimation du temps de lecture":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/montrealtips.com\/tip-tax-calculator\/","url":"https:\/\/montrealtips.com\/tip-tax-calculator\/","name":"Quebec Tip & Tax Calculator (GST + QST) \u2014 Split a Restaurant Bill in Seconds - Montreal Tips","isPartOf":{"@id":"https:\/\/montrealtips.com\/#website"},"datePublished":"2026-05-11T23:54:13+00:00","dateModified":"2026-05-12T00:25:34+00:00","breadcrumb":{"@id":"https:\/\/montrealtips.com\/tip-tax-calculator\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/montrealtips.com\/tip-tax-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/montrealtips.com\/tip-tax-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/montrealtips.com\/"},{"@type":"ListItem","position":2,"name":"Quebec Tip &#038; Tax Calculator (GST + QST) \u2014 Split a Restaurant Bill in Seconds"}]},{"@type":"WebSite","@id":"https:\/\/montrealtips.com\/#website","url":"https:\/\/montrealtips.com\/","name":"Conseils pour Montr\u00e9al","description":"Actualit\u00e9s, reportages et articles sur Montr\u00e9al","publisher":{"@id":"https:\/\/montrealtips.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/montrealtips.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/montrealtips.com\/#organization","name":"Conseils pour Montr\u00e9al","url":"https:\/\/montrealtips.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/montrealtips.com\/#\/schema\/logo\/image\/","url":"https:\/\/montrealtips.com\/wp-content\/uploads\/2018\/08\/Untitled-2.jpg","contentUrl":"https:\/\/montrealtips.com\/wp-content\/uploads\/2018\/08\/Untitled-2.jpg","width":1206,"height":1084,"caption":"Montreal Tips"},"image":{"@id":"https:\/\/montrealtips.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/mtltips\/","https:\/\/x.com\/mtltips","https:\/\/www.instagram.com\/mtltips\/","https:\/\/www.linkedin.com\/company\/montreal-tips\/","https:\/\/www.pinterest.ca\/mtltips\/"]}]}},"_links":{"self":[{"href":"https:\/\/montrealtips.com\/fr\/wp-json\/wp\/v2\/pages\/8296","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/montrealtips.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/montrealtips.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/montrealtips.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/montrealtips.com\/fr\/wp-json\/wp\/v2\/comments?post=8296"}],"version-history":[{"count":1,"href":"https:\/\/montrealtips.com\/fr\/wp-json\/wp\/v2\/pages\/8296\/revisions"}],"predecessor-version":[{"id":8317,"href":"https:\/\/montrealtips.com\/fr\/wp-json\/wp\/v2\/pages\/8296\/revisions\/8317"}],"wp:attachment":[{"href":"https:\/\/montrealtips.com\/fr\/wp-json\/wp\/v2\/media?parent=8296"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}