Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
제목은 모든 문서의 중요한 부분입니다. 작가는 항상 제목을 독자에게 더 두드러지고 의미 있게 만들려고 합니다. 문서에 제목이 여러 개 있는 경우, 작가는 이러한 제목을 구성할 수 있는 여러 가지 옵션이 있습니다. 제목을 구성하는 가장 일반적인 방법 중 하나는 번호 매기기 스타일로 제목을 작성하는 것입니다.
Aspose.PDF for .NET는 많은 미리 정의된 번호 매기기 스타일을 제공합니다. 이러한 미리 정의된 번호 매기기 스타일은 열거형인 NumberingStyle에 저장됩니다. NumberingStyle 열거형의 미리 정의된 값과 그 설명은 아래와 같습니다:
제목 유형 | 설명 |
---|---|
NumeralsArabic | 아랍식, 예: 1,1.1,… |
NumeralsRomanUppercase | 로마 대문자, 예: I,I.II,… |
NumeralsRomanLowercase | 로마 소문자, 예: i,i.ii,… |
LettersUppercase | 영어 대문자, 예: A,A.B,… |
LettersLowercase | 영어 소문자, 예: a,a.b,… |
Aspose.Pdf.Heading 클래스의 Style 속성은 제목의 번호 매기기 스타일을 설정하는 데 사용됩니다. |
그림: 미리 정의된 번호 매기기 스타일 |
---|
위 그림에 표시된 출력을 얻기 위한 소스 코드는 아래 예제에 제공됩니다. |
다음 코드 조각은 Aspose.Drawing 라이브러리와 함께 작동합니다.
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ApplyNumberStyleToPdf()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_WorkingDocuments();
// Create PDF document
using (var document = new Aspose.Pdf.Document())
{
document.PageInfo.Width = 612.0;
document.PageInfo.Height = 792.0;
document.PageInfo.Margin = new Aspose.Pdf.MarginInfo();
document.PageInfo.Margin.Left = 72;
document.PageInfo.Margin.Right = 72;
document.PageInfo.Margin.Top = 72;
document.PageInfo.Margin.Bottom = 72;
// Add page
var pdfPage = document.Pages.Add();
pdfPage.PageInfo.Width = 612.0;
pdfPage.PageInfo.Height = 792.0;
pdfPage.PageInfo.Margin = new Aspose.Pdf.MarginInfo();
pdfPage.PageInfo.Margin.Left = 72;
pdfPage.PageInfo.Margin.Right = 72;
pdfPage.PageInfo.Margin.Top = 72;
pdfPage.PageInfo.Margin.Bottom = 72;
// Create a floating box with the same margin as the page
var floatBox = new Aspose.Pdf.FloatingBox();
floatBox.Margin = pdfPage.PageInfo.Margin;
// Add the floating box to the page
pdfPage.Paragraphs.Add(floatBox);
// Add headings with numbering styles
var heading = new Aspose.Pdf.Heading(1);
heading.IsInList = true;
heading.StartNumber = 1;
heading.Text = "List 1";
heading.Style = Aspose.Pdf.NumberingStyle.NumeralsRomanLowercase;
heading.IsAutoSequence = true;
floatBox.Paragraphs.Add(heading);
var heading2 = new Aspose.Pdf.Heading(1);
heading2.IsInList = true;
heading2.StartNumber = 13;
heading2.Text = "List 2";
heading2.Style = Aspose.Pdf.NumberingStyle.NumeralsRomanLowercase;
heading2.IsAutoSequence = true;
floatBox.Paragraphs.Add(heading2);
var heading3 = new Aspose.Pdf.Heading(2);
heading3.IsInList = true;
heading3.StartNumber = 1;
heading3.Text = "the value, as of the effective date of the plan, of property to be distributed under the plan on account of each allowed";
heading3.Style = Aspose.Pdf.NumberingStyle.LettersLowercase;
heading3.IsAutoSequence = true;
floatBox.Paragraphs.Add(heading3);
// Save PDF document
document.Save(dataDir + "ApplyNumberStyle_out.pdf");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.