我正在使用日记的模板,可以在这里找到: https://www.overleaf.com/latex/templates/review-of-financial-studies-latex-template/bdgcyvpjqmbc
我认为图像的代码如下:
\begin{picture}(0,0)\unitlength\p@\thinlines
\put(-30,0){\circle{10}}
\put(-30,-5){\line(0,1){10}}
\put(-35,0){\line(1,0){30}}
\put(0,30){\circle{10}}
\put(-5,30){\line(1,0){10}}
\put(0,35){\line(0,-1){30}}
\end{picture}}
但是,当我编译时(例如直接在 overleaf、texniccenter 或 texstudio 中),图像没有显示。相反,我得到的是与代码相对应的文本,位于溢出行中。
知道可能发生了什么事情以及如何解决吗?
答案1
角落里的两个小图像(实际上应该有四个)是裁剪标记。您附上的图片看起来很像cam
由crop
包裹。
在以下示例中,打印区域为 a4paper(由geometry
包装设置),但物理区域为 250mm x 337mm(比打印区域宽 40mm,高 40mm)。
\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage[cam,center,width=250mm,height=337mm]{crop}
\usepackage{blindtext}
\begin{document}
\blinddocument
\end{document}
另请参阅
- 如何创建裁切标记, TeX 常见问题解答