我正在使用 PHP、Smarty 和 TCPDF 库来生成文档的 PDF 副本。该文档包含来自 WIRIS 编辑器的数学表达式图像以及文本内容。
我在正确定位表达式图像旁边的文本时遇到问题。
我尝试了 CSSfloat
属性中的所有内容,但没有任何反应。我正在附上我想要的这封邮件的屏幕截图。
这是打印问题及其选项的 smarty 模板代码:
{foreach from=$question_data item=qstn_ans key=key}
<table border="0" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td valign="top" >{if $qstn_ans.question_directions}{$qstn_ans.question_directions}<br /><b>Question {$que_seq_no} : </b>{/if}{$qstn_ans.question_text}</td>
</tr>
{if $qstn_ans.question_file}
<tr>
<td><img src="{$ques_thum_image_path}{$qstn_ans.question_id}_{$qstn_ans.question_file}" /></td>
</tr>
{/if}
{if $qstn_ans.question_has_sub_ques==0}
{if $qstn_ans.answer}
{foreach from=$qstn_ans.answer item=ans key=ans_no}
<td valign="top" >
{if $ans.answer_is_right==1}{assign var='correct_ans' value=$ans_no+1}{/if}
<b>{$ans_no+1}.</b> {if $ans.answer_text!=''}{$ans.answer_text}{/if}
{if $ans.answer_file!=''}<img src="{$ans_thumb_img_path}{$ans.answer_id}_{$ans.answer_file}" />{/if}
</td>
</tr>
{/foreach}
<tr>
<td></td>
</tr>
</table>
{/foreach}
此代码段可能包含一些错误,因为我随机粘贴它而没有检查循环和括号完成,但这不是这里的问题。
此代码中唯一重要的部分是打印问题文本和问题图像(如果存在)的行。
我研究了正确的解决方案,但无法获得所需的解决方案。谁能帮我吗。