Skip to content

Instantly share code, notes, and snippets.

@deadcoder0904
Created July 22, 2019 05:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deadcoder0904/a98c49048eab5fcafe9e4f7d1c708743 to your computer and use it in GitHub Desktop.
Save deadcoder0904/a98c49048eab5fcafe9e4f7d1c708743 to your computer and use it in GitHub Desktop.
Mitr SAAS
// Add script in console.
// var _cScript = document.createElement('script');_cScript.src='../../../tools/custom.js';document.head.appendChild(_cScript);
// ==================================================
function sequenceClass() {
this.init = function () {
var tClass = document.getElementsByClassName('t');
for (var i = 0; i < tClass.length; i++) {
tClass[i].style.boxShadow = '0px 0px 10px 2px #000000';
tClass[i].setAttribute('aria-hidden', 'true');
tClass[i].onclick = mouseEvent;
}
}
// ==================================================
this.finalize = function () {
var arr = [];
var tClass = document.getElementsByClassName('t');
for (var i = 0; i < tClass.length; i++) {
tClass[i].style.boxShadow = '';
var seq = tClass[i].getAttribute('data-seq');
if (seq) {
arr[seq] = tClass[i];
}
}
// console.log(arr);
var _htmlText = '';
// var pg1 = document.getElementById('pg1');
var pg1 = document.body.childNodes[0];
for (var i = arr.length - 1; i >= 0; i--) {
_htmlText = arr[i].innerText + '\n' + _htmlText;
pg1.parentNode.insertBefore(arr[i], pg1.nextSibling);
}
_htmlText = _htmlText.replace(/</g, '&lt;');
_htmlText = _htmlText.replace(/>/g, '&gt;');
var toFixText = [
['fi', 'fi'],
['ff', 'ff'],
['fl', 'fl']
];
for (var i = 0; i < toFixText.length; i++) {
var _re = new RegExp(toFixText[i][0], "g");
_htmlText = _htmlText.replace(_re, toFixText[i][1]);
}
var _jawread = document.getElementById('jawread');
if (_jawread) {
_jawread.parentNode.removeChild(_jawread);
}
_jawread = document.createElement('div');
_jawread.id = 'jawread';
_jawread.innerHTML = _htmlText;
_jawread.style.position = 'absolute';
_jawread.style.left = '0px';
_jawread.style.top = '0px';
_jawread.style.opacity = '0';
/* _jawread.style.width = '0px';
_jawread.style.height = '0px';
_jawread.style.overflow = 'hidden'; */
document.body.insertBefore(_jawread, document.body.firstChild);
var _pgNum = parseInt(location.href.split('/').reverse()[0].split('.')[0]);
var _pg1Overlay = document.getElementById('pg' + _pgNum + 'Overlay');
if (_pg1Overlay) {
_pg1Overlay.parentNode.removeChild(_pg1Overlay);
}
var _pg1Holder = document.getElementById('p' + _pgNum);
if (_pg1Holder) {
_pg1Holder.setAttribute('aria-hidden', 'true');
}
}
// ==================================================
function mouseEvent(e) {
switch (e.type) {
case 'mouseover':
break;
case 'click':
var seq = this.getAttribute('data-seq');
if (!seq) {
doSequence(this);
} else {
resequence(this);
}
break;
}
}
// ==================================================
function resequence(_ref) {
var seq = _ref.getAttribute('data-seq');
console.log(seq + ' modify');
var newId = prompt('Enter new id.');
if (newId) {
var arr = [];
var tClass = document.getElementsByClassName('t');
for (var i = 0; i < tClass.length; i++) {
var index = tClass[i].getAttribute('data-seq');
if (index) {
index = Number(index);
arr[index] = tClass[i];
}
}
arr.splice(newId, 0, arr.splice(Number(seq), 1)[0]);
for (var j = 0; j < arr.length; j++) {
arr[j].setAttribute('data-seq', j);
}
}
}
// ==================================================
function doSequence(_ref) {
var arr = [];
var tClass = document.getElementsByClassName('t');
for (var i = 0; i < tClass.length; i++) {
var index = tClass[i].getAttribute('data-seq');
if (index) {
index = Number(index);
arr[index] = tClass[i];
}
}
_ref.style.boxShadow = '0px 0px 10px 2px #FF0000';
_ref.setAttribute('data-seq', arr.length);
console.log(arr.length + ': ' + _ref.innerText);
}
// ==================================================
}
window.sequence = new sequenceClass();
// ==================================================
// ==================================================
.t {
-webkit-transform-origin: top left;
-moz-transform-origin: top left;
-o-transform-origin: top left;
-ms-transform-origin: top left;
-webkit-transform: scale(0.25);
-moz-transform: scale(0.25);
-o-transform: scale(0.25);
-ms-transform: scale(0.25);
z-index: 2;
position: absolute;
white-space: pre;
overflow: visible;
}
#t1_647{left:556px;top:1150px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t2_647{left:615px;top:1150px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t3_647{left:844px;top:1140px;}
#t4_647{left:72px;top:1150px;letter-spacing:-0.1px;}
#t5_647{left:218px;top:1150px;letter-spacing:-0.1px;}
#t6_647{left:69px;top:44px;letter-spacing:-0.1px;}
#t7_647{left:69px;top:186px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t8_647{left:69px;top:212px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t9_647{left:92px;top:286px;letter-spacing:0.7px;}
#ta_647{left:92px;top:338px;letter-spacing:-0.2px;word-spacing:0.2px;}
#tb_647{left:92px;top:372px;letter-spacing:-0.1px;word-spacing:0.1px;}
#tc_647{left:92px;top:405px;}
#td_647{left:139px;top:399px;}
#te_647{left:138px;top:419px;}
#tf_647{left:139px;top:417px;}
#tg_647{left:153px;top:405px;letter-spacing:-0.1px;word-spacing:-0.2px;}
#th_647{left:92px;top:431px;}
#ti_647{left:92px;top:457px;letter-spacing:-0.1px;word-spacing:0.1px;}
#tj_647{left:92px;top:483px;}
#tk_647{left:296px;top:483px;}
#tl_647{left:317px;top:483px;}
#tm_647{left:92px;top:535px;letter-spacing:-0.1px;word-spacing:0.2px;}
#tn_647{left:416px;top:535px;}
#to_647{left:478px;top:535px;}
#tp_647{left:499px;top:535px;}
#tq_647{left:92px;top:587px;letter-spacing:-0.1px;word-spacing:0.1px;}
#tr_647{left:420px;top:580px;}
#ts_647{left:420px;top:600px;}
#tt_647{left:420px;top:599px;}
#tu_647{left:434px;top:587px;}
#tv_647{left:490px;top:587px;}
#tw_647{left:511px;top:587px;}
#tx_647{left:92px;top:629px;letter-spacing:-0.1px;word-spacing:0.2px;}
#ty_647{left:416px;top:629px;}
#tz_647{left:481px;top:629px;}
#t10_647{left:502px;top:629px;}
#t11_647{left:92px;top:671px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t12_647{left:416px;top:671px;}
#t13_647{left:450px;top:671px;}
#t14_647{left:471px;top:671px;}
#t15_647{left:486px;top:671px;}
#t16_647{left:506px;top:671px;}
#t17_647{left:92px;top:713px;letter-spacing:-0.1px;}
#t18_647{left:595px;top:349px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t19_647{left:560px;top:459px;letter-spacing:-0.2px;word-spacing:0.2px;}
#t1a_647{left:560px;top:481px;letter-spacing:-0.1px;}
#t1b_647{left:710px;top:459px;letter-spacing:-0.2px;}
#t1c_647{left:696px;top:481px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t1d_647{left:79px;top:783px;}
#t1e_647{left:110px;top:790px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t1f_647{left:110px;top:824px;}
#t1g_647{left:149px;top:817px;}
#t1h_647{left:148px;top:837px;}
#t1i_647{left:149px;top:836px;}
#t1j_647{left:163px;top:824px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t1k_647{left:110px;top:858px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t1l_647{left:326px;top:858px;}
#t1m_647{left:347px;top:858px;letter-spacing:-0.1px;}
#t1n_647{left:110px;top:897px;}
#t1o_647{left:123px;top:891px;}
#t1p_647{left:123px;top:911px;}
#t1q_647{left:123px;top:909px;}
#t1r_647{left:137px;top:897px;letter-spacing:-0.1px;}
#t1s_647{left:200px;top:897px;}
#t1t_647{left:325px;top:897px;letter-spacing:-0.1px;}
#t1u_647{left:454px;top:897px;letter-spacing:-0.1px;}
#t1v_647{left:531px;top:897px;}
#t1w_647{left:656px;top:897px;letter-spacing:-0.2px;}
#t1x_647{left:110px;top:937px;}
#t1y_647{left:133px;top:937px;letter-spacing:-0.1px;}
#t1z_647{left:617px;top:937px;letter-spacing:-0.2px;}
#t20_647{left:110px;top:977px;letter-spacing:-1.4px;}
#t21_647{left:133px;top:977px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t22_647{left:669px;top:977px;letter-spacing:-0.3px;}
#t23_647{left:79px;top:1013px;}
#t24_647{left:110px;top:1021px;}
#t25_647{left:316px;top:1014px;}
#t26_647{left:315px;top:1034px;}
#t27_647{left:316px;top:1033px;}
#t28_647{left:330px;top:1021px;letter-spacing:-0.1px;word-spacing:0.1px;}
#t29_647{left:101px;top:101px;letter-spacing:-0.2px;word-spacing:0.2px;}
#t2a_647{left:704px;top:47px;letter-spacing:-0.3px;word-spacing:0.3px;}
#t2b_647{left:812px;top:47px;}
.s1_647{
FONT-SIZE: 45.8px;
FONT-FAMILY: MyriadPro-Bold_7mh;
color: rgb(35,31,32);
}
.s2_647{
FONT-SIZE: 45.8px;
FONT-FAMILY: MyriadPro-Regular_7mi;
color: rgb(35,31,32);
}
.s3_647{
FONT-SIZE: 85.6px;
FONT-FAMILY: MyriadPro-Bold_7l9;
color: rgb(35,31,32);
}
.s4_647{
FONT-SIZE: 45.8px;
FONT-FAMILY: MyriadPro-Regular_7m9;
color: rgb(35,31,32);
}
.s5_647{
FONT-SIZE: 79.4px;
FONT-FAMILY: MyriadPro-Regular_7l4;
color: rgb(35,31,32);
}
.s6_647{
FONT-SIZE: 79.4px;
FONT-FAMILY: MyriadPro-Bold_7l9;
color: rgb(35,31,32);
}
.s7_647{
FONT-SIZE: 110px;
FONT-FAMILY: BouledougBlack_7lc;
color: rgb(32,84,142);
}
.s8_647{
FONT-SIZE: 71.5px;
FONT-FAMILY: MyriadPro-Regular_7l4;
color: rgb(35,31,32);
}
.s9_647{
FONT-SIZE: 67.5px;
FONT-FAMILY: MathematicalPiLTStd-3_7lx;
color: rgb(35,31,32);
}
.s10_647{
FONT-SIZE: 79.4px;
FONT-FAMILY: MathematicalPiLTStd-1_7l6;
color: rgb(35,31,32);
}
.s11_647{
FONT-SIZE: 73.3px;
FONT-FAMILY: MyriadPro-Regular_7n3;
color: rgb(35,31,32);
}
.s12_647{
FONT-SIZE: 110px;
FONT-FAMILY: CAToadstool-Regular_7l3;
color: rgb(255,255,255);
}
.s13_647{
FONT-SIZE: 183.3px;
FONT-FAMILY: DINOT-CondBold_7lk;
color: rgb(255,255,255);
}
.s14_647{
FONT-SIZE: 67.2px;
FONT-FAMILY: MyriadPro-Black_7lj;
color: rgb(32,84,142);
}
.s15_647{
FONT-SIZE: 67.2px;
FONT-FAMILY: MyriadPro-Bold_7l9;
color: rgb(91,159,55);
}
.t.v1_647{
-webkit-transform: scale(0.153, 0.25);
-ms-transform: scale(0.153, 0.25);
-moz-transform: scale(0.153, 0.25);
-o-transform: scale(0.153, 0.25);
}
@font-face {
font-family: MyriadPro-Regular_7n3;
src: url("fonts/MyriadPro-Regular_7n3.woff") format("woff");
}
@font-face {
font-family: MyriadPro-Bold_7mh;
src: url("fonts/MyriadPro-Bold_7mh.woff") format("woff");
}
@font-face {
font-family: MyriadPro-Regular_7l4;
src: url("fonts/MyriadPro-Regular_7l4.woff") format("woff");
}
@font-face {
font-family: BouledougBlack_7lc;
src: url("fonts/BouledougBlack_7lc.woff") format("woff");
}
@font-face {
font-family: MyriadPro-Regular_7mi;
src: url("fonts/MyriadPro-Regular_7mi.woff") format("woff");
}
@font-face {
font-family: MyriadPro-Regular_7m9;
src: url("fonts/MyriadPro-Regular_7m9.woff") format("woff");
}
@font-face {
font-family: MyriadPro-Bold_7l9;
src: url("fonts/MyriadPro-Bold_7l9.woff") format("woff");
}
@font-face {
font-family: MathematicalPiLTStd-3_7lx;
src: url("fonts/MathematicalPiLTStd-3_7lx.woff") format("woff");
}
@font-face {
font-family: MathematicalPiLTStd-1_7l6;
src: url("fonts/MathematicalPiLTStd-1_7l6.woff") format("woff");
}
@font-face {
font-family: DINOT-CondBold_7lk;
src: url("fonts/DINOT-CondBold_7lk.woff") format("woff");
}
@font-face {
font-family: CAToadstool-Regular_7l3;
src: url("fonts/CAToadstool-Regular_7l3.woff") format("woff");
}
@font-face {
font-family: MyriadPro-Black_7lj;
src: url("fonts/MyriadPro-Black_7lj.woff") format("woff");
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="es" xml:lang="es" xmlns="http://www.w3.org/1999/xhtml" xmlns:ibooks="http://apple.com/ibooks/html-extensions" xmlns:epub="http://www.idpf.org/2007/ops">
<head>
<title>Florida Spanish Grade 4 eBook content</title>
<meta content="width=935, height=1196" name="viewport" />
<meta charset="utf-8" />
<link href="L29P023.css" rel="stylesheet" type="text/css" />
</head>
<body style="margin: 0;">
<div id="p647" style="overflow: hidden; position: relative; width: 935px; height: 1196px;">
<!-- Begin shared CSS values -->
<!-- End shared CSS values -->
<!-- Begin inline CSS -->
<!-- End inline CSS -->
<!-- Begin embedded font definitions -->
<!-- End embedded font definitions -->
<!-- Begin page background -->
<div id="pg647Overlay" style="width:100%; height:100%; position:absolute; z-index:1; background-color:rgba(0,0,0,0); -webkit-user-select: none;"></div>
<div id="pg647" style="-webkit-user-select: none;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 935 1196" version="1.1" style="height: 1196px; width: 935px;">
<defs>
<style type="text/css">
.g1_647{
fill: none;
stroke: #231F20;
stroke-width: 0.7638889;
stroke-linecap: butt;
stroke-linejoin: miter;
}
.g2_647{
fill: #FEF9F0;
}
.g3_647{
fill: none;
stroke: #5B9F37;
stroke-width: 1.5277778;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-miterlimit: 4;
}
.g4_647{
fill: #FFFFFF;
}
.g5_647{
fill: none;
stroke: #231F20;
stroke-width: 1.5277778;
stroke-linecap: butt;
stroke-linejoin: miter;
}
.g6_647{
fill: #0072BC;
}
.g7_647{
fill: #231F20;
}
.g8_647{
fill: #5B9F37;
}
.g9_647{
fill: none;
stroke: #A5BFE3;
stroke-width: 3.0555556;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: 0,7;
}
.g10_647{
fill: none;
stroke: #A5BFE3;
stroke-width: 3.0555556;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 4;
}
</style>
</defs>
<path d="M146.7,64.5l472.1,0" class="g1_647"/>
<image preserveAspectRatio="none" x="67" y="90" width="870" height="78" xlink:href="647/img/1.png"/>
<path d="M83.3,260.5c0,0,-13.8,0,-13.8,13.7l0,474.1c0,0,0,13.8,13.8,13.8l713.4,0c0,0,13.8,0,13.8,-13.8l0,-474.1c0,0,0,-13.7,-13.8,-13.7Z" class="g2_647"/>
<path d="M83.3,260.5c0,0,-13.8,0,-13.8,13.7l0,474.1c0,0,0,13.8,13.8,13.8l713.4,0c0,0,13.8,0,13.8,-13.8l0,-474.1c0,0,0,-13.7,-13.8,-13.7l-713.4,0Z" class="g3_647"/>
<path d="M559.9,428.1l220,0l0,-39.7l-220,0l0,39.7Z" class="g4_647"/>
<path d="M779.9,428.1l-220,0l0,-39.7l220,0Z" class="g5_647"/>
<path d="M559.9,428.1l11,0l0,-39.7l-11,0l0,39.7Z" class="g6_647"/>
<path d="M570.9,428.1l-11,0l0,-39.7l11,0Z" class="g5_647"/>
<path d="M559.9,382.3l220,0l0,-39.8l-220,0l0,39.8Z" class="g4_647"/>
<path d="M779.9,382.3l-220,0l0,-39.8l220,0Z" class="g5_647"/>
<path d="M640.6,428.1l0,-39.7Z" class="g4_647"/>
<path d="M640.6,428.1l0,-39.7" class="g5_647"/>
<path d="M710.3,428.1l0,-39.7Z" class="g4_647"/>
<path d="M710.3,428.1l0,-39.7" class="g5_647"/>
<path d="M565.4,435.6l0,22.5" class="g5_647"/>
<path d="M565.4,428.1l-4.3,10.6l4.3,-2.5l4.4,2.5Z" class="g7_647"/>
<path d="M745.1,435.6l0,22.5" class="g5_647"/>
<path d="M745.1,428.1l-4.4,10.6l4.4,-2.5l4.3,2.5Z" class="g7_647"/>
<path d="M84,816.3c8.5,0,15.3,-6.8,15.3,-15.2c0,-8.5,-6.8,-15.3,-15.3,-15.3c-8.4,0,-15.2,6.8,-15.2,15.3c0,8.4,6.8,15.2,15.2,15.2Z" class="g8_647"/>
<path d="M228,918.7l88.6,0" class="g9_647"/>
<path d="M221.9,918.7l0,0m97.8,0l0,0" class="g10_647"/>
<path d="M558.9,918.7l88.6,0" class="g9_647"/>
<path d="M552.8,918.7l0,0m97.8,0l0,0" class="g10_647"/>
<path d="M523.8,958.4l88.6,0" class="g9_647"/>
<path d="M517.7,958.4l0,0m97.8,0l0,0" class="g10_647"/>
<path d="M573.4,998.1l88.6,0" class="g9_647"/>
<path d="M567.3,998.1l0,0m97.8,0l0,0" class="g10_647"/>
<path d="M84,1047c8.5,0,15.3,-6.8,15.3,-15.2c0,-8.5,-6.8,-15.3,-15.3,-15.3c-8.4,0,-15.2,6.8,-15.2,15.3c0,8.4,6.8,15.2,15.2,15.2Z" class="g8_647"/>
<image preserveAspectRatio="none" x="-1" y="84" width="50" height="1041" xlink:href="647/img/2.png"/>
</svg></div>
<!-- End page background -->
<!-- Begin text definitions (Positioned/styled in CSS) -->
<div id="t1_647" class="t s1_647">Lección 29</div>
<div id="t2_647" class="t s2_647">Problemas sobre tiempo, dinero y longitud</div>
<div id="t3_647" class="t s3_647">623</div>
<div id="t4_647" class="t s4_647">©Curriculum Associates, LLC </div>
<div id="t5_647" class="t s4_647">Se prohíbe la reproducción.</div>
<div id="t6_647" class="t s5_647">Nombre: </div>
<div id="t7_647" class="t s6_647">Estudia el Ejemplo, que muestra cómo resolver un problema de varios pasos </div>
<div id="t8_647" class="t s6_647">sobre longitud. Luego resuelve los problemas 1 a 5.</div>
<div id="t9_647" class="t s7_647">EJEMPLO</div>
<div id="ta_647" class="t s5_647">Wendy tiene una valla que mide 10 pies de largo. </div>
<div id="tb_647" class="t s5_647">Unas enredaderas cubren una sección de la valla que </div>
<div id="tc_647" class="t s5_647">mide </div>
<div id="td_647" class="t s8_647">1</div>
<div id="te_647" class="t v1_647 s9_647">··</div>
<div id="tf_647" class="t s8_647">2</div>
<div id="tg_647" class="t s5_647">de pie de largo. Wendy y 2 amigas pintan cada </div>
<div id="th_647" class="t s5_647">una la misma longitud del resto de la valla. ¿Qué </div>
<div id="ti_647" class="t s5_647">longitud, en pulgadas, tiene la sección de valla que </div>
<div id="tj_647" class="t s5_647">pinta cada amiga? (1 pie </div>
<div id="tk_647" class="t s10_647">5</div>
<div id="tl_647" class="t s5_647">12 pulgadas)</div>
<div id="tm_647" class="t s5_647">Longitud de la valla: </div>
<div id="tn_647" class="t s5_647">10 pies </div>
<div id="to_647" class="t s10_647">5</div>
<div id="tp_647" class="t s5_647">120 pulgadas</div>
<div id="tq_647" class="t s5_647">Longitud que cubren las enredaderas: </div>
<div id="tr_647" class="t s8_647">1</div>
<div id="ts_647" class="t v1_647 s9_647">··</div>
<div id="tt_647" class="t s8_647">2</div>
<div id="tu_647" class="t s5_647">de pie </div>
<div id="tv_647" class="t s10_647">5</div>
<div id="tw_647" class="t s5_647">6 pulgadas </div>
<div id="tx_647" class="t s5_647">Longitud pintada: </div>
<div id="ty_647" class="t s5_647">120 − 6 </div>
<div id="tz_647" class="t s10_647">5</div>
<div id="t10_647" class="t s5_647">114 pulgadas</div>
<div id="t11_647" class="t s5_647">Longitud de cada sección: </div>
<div id="t12_647" class="t s5_647">114 </div>
<div id="t13_647" class="t s10_647">4</div>
<div id="t14_647" class="t s5_647">3 </div>
<div id="t15_647" class="t s10_647">5</div>
<div id="t16_647" class="t s5_647">38 pulgadas</div>
<div id="t17_647" class="t s5_647">La sección de valla que pinta cada amiga mide 38 pulgadas de largo.</div>
<div id="t18_647" class="t s11_647">Longitud de la valla</div>
<div id="t19_647" class="t s11_647">Longitud con</div>
<div id="t1a_647" class="t s11_647">enredaderas</div>
<div id="t1b_647" class="t s11_647">Longitud</div>
<div id="t1c_647" class="t s11_647">para pintar</div>
<div id="t1d_647" class="t s12_647">1</div>
<div id="t1e_647" class="t s5_647">Nestor necesita 750 centímetros de cuerda. La cuerda se vende en longitudes </div>
<div id="t1f_647" class="t s5_647">de 4 </div>
<div id="t1g_647" class="t s8_647">1</div>
<div id="t1h_647" class="t v1_647 s9_647">··</div>
<div id="t1i_647" class="t s8_647">2</div>
<div id="t1j_647" class="t s5_647">metros y 9 metros en la ferretería. ¿Qué longitud de cuerda debería </div>
<div id="t1k_647" class="t s5_647">comprar Nestor? (1 metro </div>
<div id="t1l_647" class="t s10_647">5</div>
<div id="t1m_647" class="t s5_647">100 centímetros)</div>
<div id="t1n_647" class="t s5_647">4 </div>
<div id="t1o_647" class="t s8_647">1</div>
<div id="t1p_647" class="t v1_647 s9_647">··</div>
<div id="t1q_647" class="t s8_647">2</div>
<div id="t1r_647" class="t s5_647">metros </div>
<div id="t1s_647" class="t s10_647">5</div>
<div id="t1t_647" class="t s5_647">centímetros </div>
<div id="t1u_647" class="t s5_647">9 metros </div>
<div id="t1v_647" class="t s10_647">5</div>
<div id="t1w_647" class="t s5_647">centímetros</div>
<div id="t1x_647" class="t s6_647">a. </div>
<div id="t1y_647" class="t s5_647">¿Qué longitud es mayor que 750 centímetros? </div>
<div id="t1z_647" class="t s5_647">centímetros</div>
<div id="t20_647" class="t s6_647">b. </div>
<div id="t21_647" class="t s5_647">Nestor debería comprar cuerda con una longitud de </div>
<div id="t22_647" class="t s5_647">metros.</div>
<div id="t23_647" class="t s12_647">2</div>
<div id="t24_647" class="t s5_647">¿Qué longitud es mayor: </div>
<div id="t25_647" class="t s8_647">1</div>
<div id="t26_647" class="t v1_647 s9_647">··</div>
<div id="t27_647" class="t s8_647">2</div>
<div id="t28_647" class="t s5_647">de metro o 240 centímetros? Explica.</div>
<div id="t29_647" class="t s13_647">Practica resolver problemas sobre longitud</div>
<div id="t2a_647" class="t s14_647">LECCIÓN 29</div>
<div id="t2b_647" class="t s15_647">SESIÓN 4</div>
<!-- End text definitions -->
</div>
</body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="es" xml:lang="es" xmlns="http://www.w3.org/1999/xhtml" xmlns:ibooks="http://apple.com/ibooks/html-extensions" xmlns:epub="http://www.idpf.org/2007/ops">
<head>
<title>Florida Spanish Grade 4 eBook content</title>
<meta content="width=935, height=1196" name="viewport" />
<meta charset="utf-8" />
<link href="L29P023.css" rel="stylesheet" type="text/css" />
</head>
<body xmlns="http://www.w3.org/1999/xhtml" style="margin: 0;"><div id="jawread" style="position: absolute; left: 0px; top: 0px; opacity: 0;">
LECCIÓN 29 SESIÓN 4
Nombre
Practica resolver problemas sobre longitud
Estudia el Ejemplo, que muestra cómo resolver un problema de varios pasos sobre longitud. Luego resuelve los problemas 1 a 5.
EJEMPLO
Wendy tiene una valla que mide 10 pies de largo. Unas enredaderas cubren una sección de la valla que mide
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow><mfrac linethickness="1"><mrow><mrow><mn>1</mn></mrow></mrow><mrow><mrow><mn>2</mn></mrow></mrow></mfrac></mrow></math>
de pie de largo. Wendy y 2 amigas pintan cada una la misma longitud del resto de la valla. ¿Qué longitud, en pulgadas, tiene la sección de valla que pinta cada amiga? (1 pie &#61; 12 pulgadas)
Hay un diagrama de barras que ilustra el problema de la valla.
Se muestra la barra de arriba rotulada "Longitud de la valla". La barra de abajo, de la misma longitud, está dividida en un segmento muy corto rotulado "Longitud con enredaderas" y 3 segmentos más largos, el que está más a la derecha está rotulado "Longitud para pintar".
Longitud de la valla 10 pies &#61; 120 pulgadas
Longitud que cubren las enredaderas:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow><mfrac linethickness="1"><mrow><mrow><mn>2</mn></mrow></mrow><mrow><mrow><mn>3</mn></mrow></mrow></mfrac></mrow></math> de pie &#61; 6 pulgadas
Longitud pintada 120 &#8722; 6 &#61; 114 pulgadas
Longitud de cada sección 114 &#247; 3 &#61; 38 pulgadas
La sección de valla que pinta cada amiga mide 38 pulgadas de largo.
1 Nestor necesita 750 centímetros de cuerda. La cuerda se vende en longitudes de 4
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow><mfrac linethickness="1"><mrow><mrow><mn>1</mn></mrow></mrow><mrow><mrow><mn>2</mn></mrow></mrow></mfrac></mrow></math>
metros y 9 metros en la ferretería. ¿Qué longitud de cuerda debería
comprar Nestor? (1 metro &#61; 100 centímetros)
4 <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow><mfrac linethickness="1"><mrow><mrow><mn>2</mn></mrow></mrow><mrow><mrow><mn>3</mn></mrow></mrow></mfrac></mrow></math> metros &#61; blank centímetros 9 metros &#61; centímetros
a. ¿Qué longitud es mayor que 750 centímetros? centímetros
b. Nestor debería comprar cuerda con una longitud de metros.
2 ¿Qué longitud es mayor
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow><mfrac linethickness="1"><mrow><mrow><mn>1</mn></mrow></mrow><mrow><mrow><mn>2</mn></mrow></mrow></mfrac></mrow></math> de metro o 240 centímetros? Explica.
</div>
<div id="t2a_647" class="t s14_647" aria-hidden="true" data-seq="0" style="">LECCIÓN 29</div><div id="t2b_647" class="t s15_647" aria-hidden="true" data-seq="1" style="">SESIÓN 4</div><div id="t6_647" class="t s5_647" aria-hidden="true" data-seq="2" style="">Nombre: </div><div id="t29_647" class="t s13_647" aria-hidden="true" data-seq="3" style="">Practica resolver problemas sobre longitud</div><div id="t7_647" class="t s6_647" aria-hidden="true" data-seq="4" style="">Estudia el Ejemplo, que muestra cómo resolver un problema de varios pasos </div><div id="t8_647" class="t s6_647" aria-hidden="true" data-seq="5" style="">sobre longitud. Luego resuelve los problemas 1 a 5.</div><div id="t9_647" class="t s7_647" aria-hidden="true" data-seq="6" style="">EJEMPLO</div><div id="ta_647" class="t s5_647" aria-hidden="true" data-seq="7" style="">Wendy tiene una valla que mide 10 pies de largo. </div><div id="tb_647" class="t s5_647" aria-hidden="true" data-seq="8" style="">Unas enredaderas cubren una sección de la valla que </div><div id="tc_647" class="t s5_647" aria-hidden="true" data-seq="9" style="">mide </div><div id="td_647" class="t s8_647" aria-hidden="true" data-seq="10" style="">1</div><div id="tf_647" class="t s8_647" aria-hidden="true" data-seq="11" style="">2</div><div id="tg_647" class="t s5_647" aria-hidden="true" data-seq="12" style="">de pie de largo. Wendy y 2 amigas pintan cada </div><div id="th_647" class="t s5_647" aria-hidden="true" data-seq="13" style="">una la misma longitud del resto de la valla. ¿Qué </div><div id="ti_647" class="t s5_647" aria-hidden="true" data-seq="14" style="">longitud, en pulgadas, tiene la sección de valla que </div><div id="tj_647" class="t s5_647" aria-hidden="true" data-seq="15" style="">pinta cada amiga? (1 pie </div><div id="tk_647" class="t s10_647" aria-hidden="true" data-seq="16" style="">5</div><div id="tl_647" class="t s5_647" aria-hidden="true" data-seq="17" style="">12 pulgadas)</div><div id="tm_647" class="t s5_647" aria-hidden="true" data-seq="18" style="">Longitud de la valla: </div><div id="tn_647" class="t s5_647" aria-hidden="true" data-seq="19" style="">10 pies </div><div id="to_647" class="t s10_647" aria-hidden="true" data-seq="20" style="">5</div><div id="tp_647" class="t s5_647" aria-hidden="true" data-seq="21" style="">120 pulgadas</div><div id="tq_647" class="t s5_647" aria-hidden="true" data-seq="22" style="">Longitud que cubren las enredaderas: </div><div id="tr_647" class="t s8_647" aria-hidden="true" data-seq="23" style="">1</div><div id="tt_647" class="t s8_647" aria-hidden="true" data-seq="24" style="">2</div><div id="tu_647" class="t s5_647" aria-hidden="true" data-seq="25" style="">de pie </div><div id="tv_647" class="t s10_647" aria-hidden="true" data-seq="26" style="">5</div><div id="tw_647" class="t s5_647" aria-hidden="true" data-seq="27" style="">6 pulgadas </div><div id="tx_647" class="t s5_647" aria-hidden="true" data-seq="28" style="">Longitud pintada: </div><div id="ty_647" class="t s5_647" aria-hidden="true" data-seq="29" style="">120 − 6 </div><div id="tz_647" class="t s10_647" aria-hidden="true" data-seq="30" style="">5</div><div id="t10_647" class="t s5_647" aria-hidden="true" data-seq="31" style="">114 pulgadas</div><div id="t11_647" class="t s5_647" aria-hidden="true" data-seq="32" style="">Longitud de cada sección: </div><div id="t12_647" class="t s5_647" aria-hidden="true" data-seq="33" style="">114 </div><div id="t13_647" class="t s10_647" aria-hidden="true" data-seq="34" style="">4</div><div id="t14_647" class="t s5_647" aria-hidden="true" data-seq="35" style="">3 </div><div id="t15_647" class="t s10_647" aria-hidden="true" data-seq="36" style="">5</div><div id="t16_647" class="t s5_647" aria-hidden="true" data-seq="37" style="">38 pulgadas</div><div id="t17_647" class="t s5_647" aria-hidden="true" data-seq="38" style="">La sección de valla que pinta cada amiga mide 38 pulgadas de largo.</div><div id="t1d_647" class="t s12_647" aria-hidden="true" data-seq="39" style="">1</div><div id="t1e_647" class="t s5_647" aria-hidden="true" data-seq="40" style="">Nestor necesita 750 centímetros de cuerda. La cuerda se vende en longitudes </div><div id="t1f_647" class="t s5_647" aria-hidden="true" data-seq="41" style="">de 4 </div><div id="t1g_647" class="t s8_647" aria-hidden="true" data-seq="42" style="">1</div><div id="t1i_647" class="t s8_647" aria-hidden="true" data-seq="43" style="">2</div><div id="t1j_647" class="t s5_647" aria-hidden="true" data-seq="44" style="">metros y 9 metros en la ferretería. ¿Qué longitud de cuerda debería </div><div id="t1k_647" class="t s5_647" aria-hidden="true" data-seq="45" style="">comprar Nestor? (1 metro </div><div id="t1l_647" class="t s10_647" aria-hidden="true" data-seq="46" style="">5</div><div id="t1m_647" class="t s5_647" aria-hidden="true" data-seq="47" style="">100 centímetros)</div><div id="t1n_647" class="t s5_647" aria-hidden="true" data-seq="48" style="">4 </div><div id="t1o_647" class="t s8_647" aria-hidden="true" data-seq="49" style="">1</div><div id="t1q_647" class="t s8_647" aria-hidden="true" data-seq="50" style="">2</div><div id="t1r_647" class="t s5_647" aria-hidden="true" data-seq="51" style="">metros </div><div id="t1s_647" class="t s10_647" aria-hidden="true" data-seq="52" style="">5</div><div id="t1t_647" class="t s5_647" aria-hidden="true" data-seq="53" style="">centímetros </div><div id="t1u_647" class="t s5_647" aria-hidden="true" data-seq="54" style="">9 metros </div><div id="t1v_647" class="t s10_647" aria-hidden="true" data-seq="55" style="">5</div><div id="t1w_647" class="t s5_647" aria-hidden="true" data-seq="56" style="">centímetros</div><div id="t1x_647" class="t s6_647" aria-hidden="true" data-seq="57" style="">a. </div><div id="t1y_647" class="t s5_647" aria-hidden="true" data-seq="58" style="">¿Qué longitud es mayor que 750 centímetros? </div><div id="t1z_647" class="t s5_647" aria-hidden="true" data-seq="59" style="">centímetros</div><div id="t20_647" class="t s6_647" aria-hidden="true" data-seq="60" style="">b. </div><div id="t21_647" class="t s5_647" aria-hidden="true" data-seq="61" style="">Nestor debería comprar cuerda con una longitud de </div><div id="t22_647" class="t s5_647" aria-hidden="true" data-seq="62" style="">metros.</div><div id="t23_647" class="t s12_647" aria-hidden="true" data-seq="63" style="">2</div><div id="t24_647" class="t s5_647" aria-hidden="true" data-seq="64" style="">¿Qué longitud es mayor: </div><div id="t25_647" class="t s8_647" aria-hidden="true" data-seq="65" style="">1</div><div id="t27_647" class="t s8_647" aria-hidden="true" data-seq="66" style="">2</div><div id="t28_647" class="t s5_647" aria-hidden="true" data-seq="67" style="">de metro o 240 centímetros? Explica.</div><div id="p647" style="overflow: hidden; position: relative; width: 935px; height: 1196px;">
<!-- Begin shared CSS values -->
<!-- End shared CSS values -->
<!-- Begin inline CSS -->
<!-- End inline CSS -->
<!-- Begin embedded font definitions -->
<!-- End embedded font definitions -->
<!-- Begin page background -->
<div id="pg647Overlay" style="width:100%; height:100%; position:absolute; z-index:1; background-color:rgba(0,0,0,0); -webkit-user-select: none;"></div>
<div id="pg647" style="-webkit-user-select: none;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 935 1196" version="1.1" style="height: 1196px; width: 935px;">
<defs>
<style type="text/css">
.g1_647{
fill: none;
stroke: #231F20;
stroke-width: 0.7638889;
stroke-linecap: butt;
stroke-linejoin: miter;
}
.g2_647{
fill: #FEF9F0;
}
.g3_647{
fill: none;
stroke: #5B9F37;
stroke-width: 1.5277778;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-miterlimit: 4;
}
.g4_647{
fill: #FFFFFF;
}
.g5_647{
fill: none;
stroke: #231F20;
stroke-width: 1.5277778;
stroke-linecap: butt;
stroke-linejoin: miter;
}
.g6_647{
fill: #0072BC;
}
.g7_647{
fill: #231F20;
}
.g8_647{
fill: #5B9F37;
}
.g9_647{
fill: none;
stroke: #A5BFE3;
stroke-width: 3.0555556;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: 0,7;
}
.g10_647{
fill: none;
stroke: #A5BFE3;
stroke-width: 3.0555556;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 4;
}
</style>
</defs>
<path d="M146.7,64.5l472.1,0" class="g1_647"/>
<image preserveAspectRatio="none" x="67" y="90" width="870" height="78" xlink:href="647/img/1.png"/>
<path d="M83.3,260.5c0,0,-13.8,0,-13.8,13.7l0,474.1c0,0,0,13.8,13.8,13.8l713.4,0c0,0,13.8,0,13.8,-13.8l0,-474.1c0,0,0,-13.7,-13.8,-13.7Z" class="g2_647"/>
<path d="M83.3,260.5c0,0,-13.8,0,-13.8,13.7l0,474.1c0,0,0,13.8,13.8,13.8l713.4,0c0,0,13.8,0,13.8,-13.8l0,-474.1c0,0,0,-13.7,-13.8,-13.7l-713.4,0Z" class="g3_647"/>
<path d="M559.9,428.1l220,0l0,-39.7l-220,0l0,39.7Z" class="g4_647"/>
<path d="M779.9,428.1l-220,0l0,-39.7l220,0Z" class="g5_647"/>
<path d="M559.9,428.1l11,0l0,-39.7l-11,0l0,39.7Z" class="g6_647"/>
<path d="M570.9,428.1l-11,0l0,-39.7l11,0Z" class="g5_647"/>
<path d="M559.9,382.3l220,0l0,-39.8l-220,0l0,39.8Z" class="g4_647"/>
<path d="M779.9,382.3l-220,0l0,-39.8l220,0Z" class="g5_647"/>
<path d="M640.6,428.1l0,-39.7Z" class="g4_647"/>
<path d="M640.6,428.1l0,-39.7" class="g5_647"/>
<path d="M710.3,428.1l0,-39.7Z" class="g4_647"/>
<path d="M710.3,428.1l0,-39.7" class="g5_647"/>
<path d="M565.4,435.6l0,22.5" class="g5_647"/>
<path d="M565.4,428.1l-4.3,10.6l4.3,-2.5l4.4,2.5Z" class="g7_647"/>
<path d="M745.1,435.6l0,22.5" class="g5_647"/>
<path d="M745.1,428.1l-4.4,10.6l4.4,-2.5l4.3,2.5Z" class="g7_647"/>
<path d="M84,816.3c8.5,0,15.3,-6.8,15.3,-15.2c0,-8.5,-6.8,-15.3,-15.3,-15.3c-8.4,0,-15.2,6.8,-15.2,15.3c0,8.4,6.8,15.2,15.2,15.2Z" class="g8_647"/>
<path d="M228,918.7l88.6,0" class="g9_647"/>
<path d="M221.9,918.7l0,0m97.8,0l0,0" class="g10_647"/>
<path d="M558.9,918.7l88.6,0" class="g9_647"/>
<path d="M552.8,918.7l0,0m97.8,0l0,0" class="g10_647"/>
<path d="M523.8,958.4l88.6,0" class="g9_647"/>
<path d="M517.7,958.4l0,0m97.8,0l0,0" class="g10_647"/>
<path d="M573.4,998.1l88.6,0" class="g9_647"/>
<path d="M567.3,998.1l0,0m97.8,0l0,0" class="g10_647"/>
<path d="M84,1047c8.5,0,15.3,-6.8,15.3,-15.2c0,-8.5,-6.8,-15.3,-15.3,-15.3c-8.4,0,-15.2,6.8,-15.2,15.3c0,8.4,6.8,15.2,15.2,15.2Z" class="g8_647"/>
<image preserveAspectRatio="none" x="-1" y="84" width="50" height="1041" xlink:href="647/img/2.png"/>
</svg></div>
<!-- End page background -->
<!-- Begin text definitions (Positioned/styled in CSS) -->
<div id="t1_647" class="t s1_647" aria-hidden="true" style="">Lección 29</div>
<div id="t2_647" class="t s2_647" aria-hidden="true" style="">Problemas sobre tiempo, dinero y longitud</div>
<div id="t3_647" class="t s3_647" aria-hidden="true" style="">623</div>
<div id="t4_647" class="t s4_647" aria-hidden="true" style="">©Curriculum Associates, LLC </div>
<div id="t5_647" class="t s4_647" aria-hidden="true" style="">Se prohíbe la reproducción.</div>
<div id="te_647" class="t v1_647 s9_647" aria-hidden="true" style="">··</div>
<div id="ts_647" class="t v1_647 s9_647" aria-hidden="true" style="">··</div>
<div id="t18_647" class="t s11_647" aria-hidden="true" style="">Longitud de la valla</div>
<div id="t19_647" class="t s11_647" aria-hidden="true" style="">Longitud con</div>
<div id="t1a_647" class="t s11_647" aria-hidden="true" style="">enredaderas</div>
<div id="t1b_647" class="t s11_647" aria-hidden="true" style="">Longitud</div>
<div id="t1c_647" class="t s11_647" aria-hidden="true" style="">para pintar</div>
<div id="t1h_647" class="t v1_647 s9_647" aria-hidden="true" style="">··</div>
<div id="t1p_647" class="t v1_647 s9_647" aria-hidden="true" style="">··</div>
<div id="t26_647" class="t v1_647 s9_647" aria-hidden="true" style="">··</div>
<img style="position: absolute; left: 550px; top: 340px; width: 240px; height: 170px;" alt="Hay un diagrama de barras que ilustra el problema de la valla." src="../trans.png" />
<div class="screen_readers_only">
<h4>Long Description</h4>
<p>Se muestra la barra de arriba rotulada "Longitud de la valla". La barra de abajo, de la misma longitud, está dividida en un segmento muy corto rotulado "Longitud con enredaderas" y 3 segmentos más largos, el que está más a la derecha está rotulado "Longitud para pintar".</p>
</div>
<!-- End text definitions -->
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment