Forgot password?
 Create new account
View 100|Reply 6

PDF格式的论坛?

[Copy link]

3147

Threads

8493

Posts

610K

Credits

Credits
66163
QQ

Show all posts

hbghlyj Posted at 2024-8-29 12:07:19 |Read mode
论坛大多是HTML格式的。我想,在PDF里也有鏈接,可以把看帖页做成PDF,点击PDF上面的鏈接进入发帖/回复页。

3147

Threads

8493

Posts

610K

Credits

Credits
66163
QQ

Show all posts

 Author| hbghlyj Posted at 2024-8-29 12:22:11
例如
  1. \documentclass{article}
  2. \usepackage{hyperref}
  3. \usepackage{tikz}
  4. \begin{document}
  5. \href{https://google.com}{
  6. \usetikzlibrary {svg.path}
  7. \begin{tikzpicture}
  8.   \fill svg{m 6.598,12.989204%
  9. a 0.144,0.144 0 0 0 0.202,-0.134%
  10. v -1.153%
  11. a 0.5,0.5 0 0 1 0.5,-0.5%
  12. c 0.667,0 2.013,-0.005 3.3,-0.822 0.984,-0.6240005 1.99,-1.7600005 2.595,-3.8760005 -1.02,0.983 -2.185,1.516 -3.205,1.799%
  13. a 8.7,8.7 0 0 1 -1.921,0.306 7,7 0 0 1 -0.798,-0.008%
  14. H 7.258%
  15. l -0.005,-0.001%
  16. H 7.252%
  17. l 0.048,-0.498 -0.05,0.498%
  18. a 0.5,0.5 0 0 1 -0.45,-0.498%
  19. v -1.153%
  20. c 0,-0.108 -0.11,-0.176 -0.202,-0.134%
  21. l -3.984,2.933 -0.042,0.028%
  22. a 0.147,0.147 0 0 0 0,0.2520005%
  23. l 0.042,0.028%
  24. z%
  25. %
  26. M 7.8,7.6162035%
  27. q 0.103,0 0.223,-0.006%
  28. c 0.434,-0.02 1.034,-0.086 1.7,-0.271 1.326,-0.368 2.896,-1.202 3.94,-3.08%
  29. a 0.5,0.5 0 0 1 0.933,0.305%
  30. c -0.464,3.71 -1.886,5.6620005 -3.46,6.6600005 -1.245,0.79 -2.527,0.942 -3.336,0.971%
  31. v 0.66%
  32. a 1.144,1.144 0 0 1 -1.767,0.96%
  33. l -3.994,-2.94%
  34. a 1.147,1.147 0 0 1 0,-1.9460005%
  35. l 3.994,-2.94%
  36. a 1.144,1.144 0 0 1 1.767,0.96%
  37. z};
  38. \end{tikzpicture}
  39. Reply
  40. }
  41. \end{document}
Copy the Code

会打印一个回复按鈕。可点击鏈接。
Screenshot 2024-08-29 122453.png

3147

Threads

8493

Posts

610K

Credits

Credits
66163
QQ

Show all posts

 Author| hbghlyj Posted at 2024-8-29 12:40:06
  1. \documentclass[12pt]{article}
  2. \usepackage{hyperref}
  3. \usepackage{tikz}
  4. \usetikzlibrary{svg.path}
  5. \usepackage[most]{tcolorbox}
  6. \definecolor{Blue}{HTML}{0d6efd}
  7. \tcbset{on line,
  8.         boxsep=4pt, left=0pt,right=0pt,top=0pt,bottom=0pt,
  9.         colframe=white,colback=Blue,colupper=white
  10.         }
  11. \begin{document}
  12. \href{https://google.com}{
  13. \tcbox{\begin{tikzpicture}
  14.   \fill svg{m 6.598,12.989204%
  15. a 0.144,0.144 0 0 0 0.202,-0.134%
  16. v -1.153%
  17. a 0.5,0.5 0 0 1 0.5,-0.5%
  18. c 0.667,0 2.013,-0.005 3.3,-0.822 0.984,-0.6240005 1.99,-1.7600005 2.595,-3.8760005 -1.02,0.983 -2.185,1.516 -3.205,1.799%
  19. a 8.7,8.7 0 0 1 -1.921,0.306 7,7 0 0 1 -0.798,-0.008%
  20. H 7.258%
  21. l -0.005,-0.001%
  22. H 7.252%
  23. l 0.048,-0.498 -0.05,0.498%
  24. a 0.5,0.5 0 0 1 -0.45,-0.498%
  25. v -1.153%
  26. c 0,-0.108 -0.11,-0.176 -0.202,-0.134%
  27. l -3.984,2.933 -0.042,0.028%
  28. a 0.147,0.147 0 0 0 0,0.2520005%
  29. l 0.042,0.028%
  30. z%
  31. %
  32. M 7.8,7.6162035%
  33. q 0.103,0 0.223,-0.006%
  34. c 0.434,-0.02 1.034,-0.086 1.7,-0.271 1.326,-0.368 2.896,-1.202 3.94,-3.08%
  35. a 0.5,0.5 0 0 1 0.933,0.305%
  36. c -0.464,3.71 -1.886,5.6620005 -3.46,6.6600005 -1.245,0.79 -2.527,0.942 -3.336,0.971%
  37. v 0.66%
  38. a 1.144,1.144 0 0 1 -1.767,0.96%
  39. l -3.994,-2.94%
  40. a 1.147,1.147 0 0 1 0,-1.9460005%
  41. l 3.994,-2.94%
  42. a 1.144,1.144 0 0 1 1.767,0.96%
  43. z};
  44. \end{tikzpicture}
  45. Reply}}
  46. \end{document}
Copy the Code
美化了一下,
Screenshot 2024-08-29 at 12-39-30 run tex snippet.png
浏览帖子页面可以是动态生成的PDF,点击PDF上面的鏈接进入发帖/回复页😀

3147

Threads

8493

Posts

610K

Credits

Credits
66163
QQ

Show all posts

 Author| hbghlyj Posted at 2024-8-29 13:00:32
前加上灰色小字日期
Screenshot 2024-08-29 at 13-26-53 run tex snippet.png
  1. \documentclass[12pt]{article}
  2. \usepackage{changepage}
  3. \usepackage{cmbright}
  4. \usepackage{xcolor}
  5. \usepackage{wasysym}
  6. \usepackage[framemethod=TikZ]{mdframed}
  7. \usepackage[margin=5mm]{geometry}
  8. \setlength\parindent{0pt}
  9. \begin{document}
  10. \begin{mdframed}[roundcorner=5pt]
  11. \smiley{}
  12. \textcolor{gray}{\tiny 2024-8-29 04:00}
  13. This is original post. This is original post. This is original post. This is original post.
  14. \end{mdframed}
  15. \begin{adjustwidth}{15pt}{0pt}
  16. \begin{mdframed}[roundcorner=5pt]
  17. \smiley{}
  18. \textcolor{gray}{\tiny 2024-8-29 05:00}
  19. This is a reply. This is a reply. This is a reply. This is a reply. This is a reply.
  20. \end{mdframed}
  21. \begin{adjustwidth}{15pt}{0pt}
  22. \begin{mdframed}[roundcorner=5pt]
  23. \smiley{}
  24. \textcolor{gray}{\tiny 2024-8-29 06:00}
  25. This is a reply to reply. This is a reply to reply. This is a reply to reply.
  26. \end{mdframed}
  27. \end{adjustwidth}
  28. \end{adjustwidth}
  29. \end{document}
Copy the Code

3147

Threads

8493

Posts

610K

Credits

Credits
66163
QQ

Show all posts

 Author| hbghlyj Posted at 2024-8-29 13:28:11
试制一个PDF的论坛。大家有什么指导建议?😀

701

Threads

110K

Posts

910K

Credits

Credits
94172
QQ

Show all posts

kuing Posted at 2024-8-29 13:30:57
hbghlyj 发表于 2024-8-29 13:28
试制一个PDF的论坛。大家有什么指导建议?😀
不好意思,完全看不懂😥

3147

Threads

8493

Posts

610K

Credits

Credits
66163
QQ

Show all posts

 Author| hbghlyj Posted at 2024-8-29 15:15:26
https://github.com/mozilla/pdf.js/issues/13266
PDF.js可以装一个Submit按鈕!可以把发帖框放在PDF中。按按鈕提交到cgi处理😀
pdf.js/src/scripting_api/doc.js

手机版Mobile version|Leisure Math Forum

2025-4-20 22:18 GMT+8

Powered by Discuz!

× Quick Reply To Top Return to the list