Fix path references and rendering issues for bitPublish extension - #68
Open
statkclee wants to merge 1 commit into
Open
Fix path references and rendering issues for bitPublish extension#68statkclee wants to merge 1 commit into
statkclee wants to merge 1 commit into
Conversation
- Fix font paths from _extensions/bit2r/bitPublish/fonts to _extensions/bitPublish/fonts - Add CRAN mirror setting in init_environments.R to resolve package installation issues - Fix LaTeX table syntax by removing invalid chunk options from raw LaTeX blocks - Update source paths in all QMD files to use correct extension path - Adjust language setting from ko-KR to en to resolve Korean hyphenation pattern issues This resolves rendering errors when using `quarto render --to bitPublish-pdf` command. The changes ensure successful PDF generation with proper font loading and LaTeX compilation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
이 PR은 bitPublish 확장을 사용할 때 발생하는 여러 렌더링 오류를 수정합니다.
Fixed Issues
Test Plan
quarto render --to bitPublish-pdf명령 성공적으로 실행docs/bitPublish를-이용하여-한글-책-조판하기.pdf)Changes Made
1. Font Path Corrections
_extensions/bitPublish/bitPublish.tex,_extensions/bitPublish/_extension.yml,_extensions/bitPublish/init_environments.R_extensions/bit2r/bitPublish/fonts/*→_extensions/bitPublish/fonts/*2. R Environment Setup
_extensions/bitPublish/init_environments.Roptions(repos = c(CRAN = "https://cran.r-project.org/"))추가3. LaTeX Table Syntax Fix
chap_intro_bitpublish.qmd#| tbl-pos: htb\!제거,\begin{table}[htb\!]사용4. QMD Source Path Updates
chap_exams.qmd,chap_intro_bitpublish.qmd,chap_tips.qmd,chap_troubleshooting.qmd,chap_version.qmdsource(here::here("_extensions", "bit2r", "bitPublish", "init_environments.R"))→source(here::here("_extensions", "bitPublish", "init_environments.R"))5. Language Setting Adjustment
_quarto.ymllang: ko-KR→lang: enBefore/After
Before (실패)
After (성공)
Additional Notes
🤖 Generated with Claude Code